Fixed namespace pollution in previous commit. The C99 function
sterror_r() must not be declared in the C90/POSIX.1-1990 section. Put it in the nonstandard section for now.
This commit is contained in:
parent
88736e1d37
commit
d23c1cd5d7
@ -62,7 +62,6 @@ int strcoll __P((const char *, const char *));
|
||||
char *strcpy __P((char *, const char *));
|
||||
size_t strcspn __P((const char *, const char *));
|
||||
char *strerror __P((int));
|
||||
int strerror_r __P((int, char *, size_t));
|
||||
size_t strlen __P((const char *));
|
||||
char *strncat __P((char *, const char *, size_t));
|
||||
int strncmp __P((const char *, const char *, size_t));
|
||||
@ -86,6 +85,7 @@ char *rindex __P((const char *, int));
|
||||
int strcasecmp __P((const char *, const char *));
|
||||
char *strcasestr __P((const char *, const char *));
|
||||
char *strdup __P((const char *));
|
||||
int strerror_r __P((int, char *, size_t));
|
||||
size_t strlcat __P((char *, const char *, size_t));
|
||||
size_t strlcpy __P((char *, const char *, size_t));
|
||||
void strmode __P((int, char *));
|
||||
|
Loading…
Reference in New Issue
Block a user