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

@ -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

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