mirror of
https://github.com/fluencelabs/musl
synced 2025-06-22 19:21:58 +00:00
add some missing prototypes for nonstandard functions (strsep, clearenv)
This commit is contained in:
@ -124,6 +124,7 @@ void lcong48 (unsigned short [7]);
|
|||||||
char *mktemp (char *);
|
char *mktemp (char *);
|
||||||
void *valloc (size_t);
|
void *valloc (size_t);
|
||||||
void *memalign(size_t, size_t);
|
void *memalign(size_t, size_t);
|
||||||
|
int clearenv(void);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
@ -73,6 +73,7 @@ int strcasecmp (const char *, const char *);
|
|||||||
int strncasecmp (const char *, const char *, size_t);
|
int strncasecmp (const char *, const char *, size_t);
|
||||||
char *strchrnul(const char *, int);
|
char *strchrnul(const char *, int);
|
||||||
char *strcasestr(const char *, const char *);
|
char *strcasestr(const char *, const char *);
|
||||||
|
char *strsep(char **, char *);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
Reference in New Issue
Block a user