got rid of includes of malloc.h (use stdlib.h instead)
authorewt <devnull@localhost>
Tue, 26 Aug 1997 14:21:46 +0000 (14:21 +0000)
committerewt <devnull@localhost>
Tue, 26 Aug 1997 14:21:46 +0000 (14:21 +0000)
CVS patchset: 1800
CVS date: 1997/08/26 14:21:46

CHANGES
lib/header.c
misc/myrealloc.c

diff --git a/CHANGES b/CHANGES
index 0b5df56..f721f36 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,7 @@
+2.4.5 -> 2.4.6:
+       - added os_canon entries for BSD/OS and NextStep
+       - replaced include of <malloc.h> with includes of <stdlib.h>
+
 2.4.4 -> 2.4.5:
        - call getpwnam()/endpwent() once before a chroot(), forcing name 
          service shared libs to be loaded from outside of the root path
index dd6f9c0..86fec96 100644 (file)
@@ -16,7 +16,7 @@
 
 #include <stdlib.h>
 #include <ctype.h>
-#include <malloc.h>
+#include <stdlib.h>
 #include <string.h>
 #include <sys/time.h>
 #include <sys/types.h>
index d646d65..bdb38a3 100644 (file)
@@ -1,5 +1,5 @@
 #include <stdio.h>
-#include <malloc.h>
+#include <stdlib.h>
 #define size_t unsigned
 
 void *myrealloc(void *ptr, size_t size);