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:
Bruce Evans 2001-11-28 19:02:01 +00:00
parent 88736e1d37
commit d23c1cd5d7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=87069

View file

@ -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 *));