add some missing prototypes for nonstandard functions (strsep, clearenv)
authorRich Felker <dalias@aerifal.cx>
Wed, 30 Mar 2011 18:14:26 +0000 (14:14 -0400)
committerRich Felker <dalias@aerifal.cx>
Wed, 30 Mar 2011 18:14:26 +0000 (14:14 -0400)
include/stdlib.h
include/string.h

index 047a5f3..27784c6 100644 (file)
@@ -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
 
 
index 00c8e8f..bd195e3 100644 (file)
@@ -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