diff options
author | Roland McGrath <roland@gnu.org> | 2005-10-24 19:32:17 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2005-10-24 19:32:17 +0000 |
commit | 593ffe6737e7e131ba948d1a92405d0857cc2172 (patch) | |
tree | f5ed2fb9eba8503ac0e066dc8793541c69fde120 | |
parent | 4f4b698a728eb657700ba52b04addd093627e856 (diff) | |
download | glibc-593ffe6737e7e131ba948d1a92405d0857cc2172.tar.gz glibc-593ffe6737e7e131ba948d1a92405d0857cc2172.tar.xz glibc-593ffe6737e7e131ba948d1a92405d0857cc2172.zip |
2005-10-24 Roland McGrath <roland@redhat.com>
[BZ #1534] * include/string.h: Use libc_hidden_proto, not libc_hidden_builtin_proto, for strnlen.
-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 532d5ed333..c196007dcb 100644 --- a/include/string.h +++ b/include/string.h @@ -83,6 +83,7 @@ libc_hidden_proto (__strxfrm_l) libc_hidden_proto (__strtok_r) extern char *__strsep_g (char **__stringp, __const char *__delim); libc_hidden_proto (__strsep_g) +libc_hidden_proto (strnlen) libc_hidden_builtin_proto (memchr) libc_hidden_builtin_proto (memcpy) @@ -96,7 +97,6 @@ libc_hidden_builtin_proto (strcmp) libc_hidden_builtin_proto (strcpy) libc_hidden_builtin_proto (strcspn) libc_hidden_builtin_proto (strlen) -libc_hidden_builtin_proto (strnlen) libc_hidden_builtin_proto (strncmp) libc_hidden_builtin_proto (strncpy) libc_hidden_builtin_proto (strpbrk) |