diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2002-10-05 22:07:28 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2002-10-05 22:07:28 +0000 |
| commit | 103f8a93cb0eaaaecb05b03229a091a5f0a0f1fb (patch) | |
| tree | bed77e89f8c9e47cf714b8fd404ab743f158e400 /include/string.h | |
| parent | 0cdbe3293731eb6808af54552422545bc0182fae (diff) | |
Notes
Diffstat (limited to 'include/string.h')
| -rw-r--r-- | include/string.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/string.h b/include/string.h index d6951a8a3377..2bb759830622 100644 --- a/include/string.h +++ b/include/string.h @@ -68,7 +68,6 @@ char *strchr(const char *, int); int strcmp(const char *, const char *); int strcoll(const char *, const char *); char *strcpy(char * __restrict, const char * __restrict); -char *stpcpy(char *, const char *); size_t strcspn(const char *, const char *); char *strerror(int); size_t strlen(const char *); @@ -93,6 +92,7 @@ int strerror_r(int, char *, size_t); #endif #if __BSD_VISIBLE +char *stpcpy(char *, const char *); char *strcasestr(const char *, const char *); size_t strlcat(char *, const char *, size_t); size_t strlcpy(char *, const char *, size_t); |
