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 047a5f3fd858825fe811bf17b4df7fa800f1172c..27784c61d0844c1c645854077352127b3c4acc9b 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 00c8e8ff5786ca36abd014babf4c94e6a5031317..bd195e3ffae6c24817b483413720ce32de0d3265 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