diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2015-06-07 13:29:33 -0500 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2015-06-10 10:20:43 -0500 |
commit | c5a409f98681db04f745cdf242c6166ecb13b9bd (patch) | |
tree | 6e69db4b0d190041a89bcc9f80f7dc2da11213f6 /ldso/include/dl-string.h | |
parent | 0b71a91bfa06cdc2c8092698e442bf9412d26a2f (diff) |
avoid some compiler warnings
Patch seen here:
http://lists.uclibc.org/pipermail/uclibc/2015-April/048892.html
Diffstat (limited to 'ldso/include/dl-string.h')
-rw-r--r-- | ldso/include/dl-string.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ldso/include/dl-string.h b/ldso/include/dl-string.h index aacad1038..14ae617c3 100644 --- a/ldso/include/dl-string.h +++ b/ldso/include/dl-string.h @@ -204,7 +204,9 @@ static __always_inline char * _dl_get_last_path_component(char *path) # define _dl_strcat strcat # define _dl_strcpy strcpy # define _dl_strcmp strcmp +# define _dl_strchr strchr # define _dl_strrchr strrchr +# define _dl_strstr strstr # define _dl_memcpy memcpy # define _dl_memcmp memcmp # define _dl_memset memset |