diff options
author | Noah Goldstein <goldstein.w.n@gmail.com> | 2021-10-21 15:53:58 -0500 |
---|---|---|
committer | Noah Goldstein <goldstein.w.n@gmail.com> | 2021-10-26 16:51:29 -0500 |
commit | 9894127d202d8c0c821d852658057a03ba3cc3d2 (patch) | |
tree | b2517795f8aa1613ffb17a5d23a8804e9d1860b6 /include | |
parent | 44829b3ddb64e99e37343a0f25b2c082387d31a5 (diff) | |
download | glibc-9894127d202d8c0c821d852658057a03ba3cc3d2.zip glibc-9894127d202d8c0c821d852658057a03ba3cc3d2.tar.gz glibc-9894127d202d8c0c821d852658057a03ba3cc3d2.tar.bz2 |
String: Add hidden defs for __memcmpeq() to enable internal usage
No bug.
This commit adds hidden defs for all declarations of __memcmpeq. This
enables usage of __memcmpeq without the PLT for usage internal to
GLIBC.
Diffstat (limited to 'include')
-rw-r--r-- | include/string.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/string.h b/include/string.h index 81dab39..21f641a 100644 --- a/include/string.h +++ b/include/string.h @@ -112,6 +112,7 @@ extern char *__strsep_g (char **__stringp, const char *__delim); libc_hidden_proto (__strsep_g) libc_hidden_proto (strnlen) libc_hidden_proto (__strnlen) +libc_hidden_proto (__memcmpeq) libc_hidden_proto (memmem) extern __typeof (memmem) __memmem; libc_hidden_proto (__memmem) |