diff options
author | Roland McGrath <roland@gnu.org> | 2005-10-24 19:31:12 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2005-10-24 19:31:12 +0000 |
commit | 710af5d7abc022c1c894254acfc86ef2d710ec08 (patch) | |
tree | 7f716df60398ab3feb65b15800d960f96c11b118 | |
parent | dc06a18052e777f288ddaf3e1e5cdb920b51ce3b (diff) | |
download | glibc-710af5d7abc022c1c894254acfc86ef2d710ec08.tar.gz glibc-710af5d7abc022c1c894254acfc86ef2d710ec08.tar.xz glibc-710af5d7abc022c1c894254acfc86ef2d710ec08.zip |
[BZ #1534]
2005-10-24 Roland McGrath <roland@redhat.com> [BZ #1534] * include/string.h: Use libc_hidden_proto for strnlen, not libc_hidden_builtin_proto.
-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) |