diff options
author | Michael Brown <mcb30@etherboot.org> | 2006-04-30 11:45:38 +0000 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2006-04-30 11:45:38 +0000 |
commit | 8df7e74990e125c9632e006e61d6378009702079 (patch) | |
tree | a02608bd0a3bfdb981b6fb2f14f451755236bc1e /src/include/stdlib.h | |
parent | 01bd78d62a0836cc0ae3ab7afaca6af52b6bcb62 (diff) | |
download | ipxe-8df7e74990e125c9632e006e61d6378009702079.tar.gz |
Fix up prototype of strtoul() to match POSIX.
Diffstat (limited to 'src/include/stdlib.h')
-rw-r--r-- | src/include/stdlib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/stdlib.h b/src/include/stdlib.h index 4dcabfb65..4dd7e54c5 100644 --- a/src/include/stdlib.h +++ b/src/include/stdlib.h @@ -1,6 +1,6 @@ #ifndef STDLIB_H #define STDLIB_H -extern unsigned long strtoul ( const char *p, const char **endp, int base ); +extern unsigned long strtoul ( const char *p, char **endp, int base ); #endif /* STDLIB_H */ |