diff options
Diffstat (limited to 'libexec/rtld-elf')
-rw-r--r-- | libexec/rtld-elf/malloc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libexec/rtld-elf/malloc.c b/libexec/rtld-elf/malloc.c index 1e0664ce3195..ed0d1fd1ffce 100644 --- a/libexec/rtld-elf/malloc.c +++ b/libexec/rtld-elf/malloc.c @@ -52,6 +52,7 @@ static char *rcsid = "$FreeBSD$"; #include <paths.h> #include <stdlib.h> #include <string.h> +#include <stddef.h> #include <unistd.h> #include <sys/param.h> #include <sys/mman.h> @@ -65,8 +66,6 @@ static char *rcsid = "$FreeBSD$"; #define NEED_DEV_ZERO 1 #endif -#define NULL 0 - static void morecore(); static int findbucket(); |