Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1From e295844e8ef5c13487996ab700e5f12a7fadb1a6 Mon Sep 17 00:00:00 2001 2From: Private <private@private.priv> 3Date: Wed, 30 Dec 2020 16:06:46 -0800 4Subject: [PATCH] malloc.h to stdlib.h in rfc2440.c 5 6The malloc.h is deprecated and should not be used 7--- 8 src/rfc2440.c | 2 +- 9 1 file changed, 1 insertion(+), 1 deletion(-) 10 11diff --git a/src/rfc2440.c b/src/rfc2440.c 12index 5a1f296..4d6a5db 100644 13--- a/src/rfc2440.c 14+++ b/src/rfc2440.c 15@@ -23,7 +23,7 @@ 16 #include <zlib.h> 17 #endif 18 #include <stdio.h> 19-#include <malloc.h> 20+#include <stdlib.h> 21 22 #include "xmalloc.h" 23 #include "keys.h" 24-- 252.13.5 26