diff options
Diffstat (limited to 'string')
-rw-r--r-- | string/string.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/string/string.h b/string/string.h index 201cff5f74..7f19dfbd6d 100644 --- a/string/string.h +++ b/string/string.h @@ -109,7 +109,6 @@ extern char *strdup __P ((__const char *__s)); /* Return a malloc'd copy of at most N bytes of STRING. The resultant string is terminated even if no null terminator appears before STRING[N]. */ -extern char *__strndup __P ((__const char *__string, size_t __n)); #if defined __USE_GNU extern char *strndup __P ((__const char *__string, size_t __n)); #endif @@ -251,8 +250,6 @@ extern int __strcasecmp __P ((__const char *__s1, __const char *__s2)); extern int strcasecmp __P ((__const char *__s1, __const char *__s2)); /* Compare no more than N chars of S1 and S2, ignoring case. */ -extern int __strncasecmp __P ((__const char *__s1, __const char *__s2, - size_t __n)); extern int strncasecmp __P ((__const char *__s1, __const char *__s2, size_t __n)); #endif /* Use BSD or X/Open Unix. */ |