got rid of includes of malloc.h (use stdlib.h instead)

CVS patchset: 1800
CVS date: 1997/08/26 14:21:46
This commit is contained in:
ewt 1997-08-26 14:21:46 +00:00
parent b54778e17d
commit df4eb604ec
3 changed files with 6 additions and 2 deletions

View File

@ -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

View 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>

View 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);