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

This commit is contained in:
Rich Felker
2011-03-30 14:14:26 -04:00
parent 3990c5c6a4
commit a5323c5768
2 changed files with 2 additions and 0 deletions

View 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