From b02a564297afbc48f7eb1c9d0482b9a3c3ac0b25 Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Fri, 19 Jan 2007 00:39:12 +0000 Subject: [PATCH] Add missing prerequisite include --- src/include/stdlib.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/include/stdlib.h b/src/include/stdlib.h index 39ad831f..26b68351 100644 --- a/src/include/stdlib.h +++ b/src/include/stdlib.h @@ -1,6 +1,8 @@ #ifndef STDLIB_H #define STDLIB_H +#include + extern unsigned long strtoul ( const char *p, char **endp, int base ); extern void * realloc ( void *old_ptr, size_t new_size ); extern void * malloc ( size_t size );