diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-08-10 19:47:55 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-08-10 19:47:55 +0000 |
commit | 56e5d28c812ad3851c02d20df93cd6f00ada64bb (patch) | |
tree | 465c280227793f76ce052dfc33518a79b0753baa /include/stdlib.h | |
parent | f6715fc37990a65ca16f09b4699459ff3eaa9902 (diff) |
More stuff. Down to only 43 missing functions before BusyBox will
link. Fixed socket stuff so it doesn't pull in kernel headers and
stubbed out fork and clone. A few other header file cleanups.
-Erik
Diffstat (limited to 'include/stdlib.h')
-rw-r--r-- | include/stdlib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/stdlib.h b/include/stdlib.h index 51ce80ba2..fefaf447a 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -58,6 +58,7 @@ extern int putenv __P ((__const char *__string)); extern int setenv __P ((__const char *__name, __const char *__value, int __replace)); +extern void unsetenv __P ((__const char *__name)); extern int system __P ((__const char *__command)); @@ -87,7 +88,6 @@ extern void qsort __P ((__ptr_t __base, size_t __nmemb, size_t __size, #define atof(x) strtod((x),(char**)0) #define atoi(x) (int)strtol((x),(char**)0,10) #define atol(x) strtol((x),(char**)0,10) -char* itoa(int i); /* Returned by `div'. */ typedef struct |