Add support for X/Open.

PR: 37078
This commit is contained in:
Mike Barcroft 2002-04-15 03:21:21 +00:00
parent d6c4eef6dd
commit 6e07075911
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=94721

View File

@ -81,13 +81,16 @@ char *strstr(const char *, const char *);
char *strtok(char * __restrict, const char * __restrict);
size_t strxfrm(char * __restrict, const char * __restrict, size_t);
#if __POSIX_VISIBLE >= 200112
#if __POSIX_VISIBLE >= 200112 || __XSI_VISIBLE >= 500
void *memccpy(void * __restrict, const void * __restrict, int, size_t);
char *strdup(const char *);
int strerror_r(int, char *, size_t);
char *strtok_r(char *, const char *, char **);
#endif
#if __POSIX_VISIBLE >= 200112
int strerror_r(int, char *, size_t);
#endif
#if __BSD_VISIBLE
char *strcasestr(const char *, const char *);
size_t strlcat(char *, const char *, size_t);