Browse Source

add some missing prototypes for nonstandard functions (strsep, clearenv)

Rich Felker 14 years ago
parent
commit
a5323c5768
2 changed files with 2 additions and 0 deletions
  1. 1 0
      include/stdlib.h
  2. 1 0
      include/string.h

+ 1 - 0
include/stdlib.h

@@ -124,6 +124,7 @@ void lcong48 (unsigned short [7]);
 char *mktemp (char *);
 void *valloc (size_t);
 void *memalign(size_t, size_t);
+int clearenv(void);
 #endif
 
 

+ 1 - 0
include/string.h

@@ -73,6 +73,7 @@ int strcasecmp (const char *, const char *);
 int strncasecmp (const char *, const char *, size_t);
 char *strchrnul(const char *, int);
 char *strcasestr(const char *, const char *);
+char *strsep(char **, char *);
 #endif
 
 #ifdef __cplusplus