diff options
author | Michael Brown <mcb30@etherboot.org> | 2005-04-30 13:48:48 +0000 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2005-04-30 13:48:48 +0000 |
commit | 70567c51a218a03137a4878a29b7928779243fc0 (patch) | |
tree | 185dec13b1cc0549e2bac309c73f6175b5ff8cd4 /src/include/stdlib.h | |
parent | 044b20385b5bdb3eb423730fe017e58ce428d6e6 (diff) | |
download | ipxe-70567c51a218a03137a4878a29b7928779243fc0.tar.gz |
Moved strtoul prototype into stdlib.h for consistency
Diffstat (limited to 'src/include/stdlib.h')
-rw-r--r-- | src/include/stdlib.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/include/stdlib.h b/src/include/stdlib.h new file mode 100644 index 000000000..4dcabfb65 --- /dev/null +++ b/src/include/stdlib.h @@ -0,0 +1,6 @@ +#ifndef STDLIB_H +#define STDLIB_H + +extern unsigned long strtoul ( const char *p, const char **endp, int base ); + +#endif /* STDLIB_H */ |