about summary refs log tree commit diff
path: root/string
diff options
context:
space:
mode:
Diffstat (limited to 'string')
-rw-r--r--string/string.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/string/string.h b/string/string.h
index 45071b8560..53b6096497 100644
--- a/string/string.h
+++ b/string/string.h
@@ -92,6 +92,7 @@ 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));
 extern char *strndup __P ((__const char *__string, size_t __n));
 
 #if defined (__USE_GNU) && defined (__GNUC__)