diff options
author | Michael Brown <mcb30@etherboot.org> | 2007-01-19 00:39:12 +0000 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2007-01-19 00:39:12 +0000 |
commit | b02a564297afbc48f7eb1c9d0482b9a3c3ac0b25 (patch) | |
tree | 43a5345c9fd79534ad73268809e02be6f3ce1dcd /src/include/stdlib.h | |
parent | 4e3976711dec26ba1f462f19c4b865dea3dbe4d7 (diff) | |
download | ipxe-b02a564297afbc48f7eb1c9d0482b9a3c3ac0b25.tar.gz |
Add missing prerequisite include
Diffstat (limited to 'src/include/stdlib.h')
-rw-r--r-- | src/include/stdlib.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/stdlib.h b/src/include/stdlib.h index 39ad831fc..26b68351d 100644 --- a/src/include/stdlib.h +++ b/src/include/stdlib.h @@ -1,6 +1,8 @@ #ifndef STDLIB_H #define STDLIB_H +#include <stdint.h> + 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 ); |