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:
parent
b54778e17d
commit
df4eb604ec
4
CHANGES
4
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
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#include <stdio.h>
|
||||
#include <malloc.h>
|
||||
#include <stdlib.h>
|
||||
#define size_t unsigned
|
||||
|
||||
void *myrealloc(void *ptr, size_t size);
|
||||
|
|
Loading…
Reference in New Issue