diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2015-07-28 15:39:13 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.com> | 2015-08-11 10:03:09 -0300 |
commit | 14362ef154136223b0f77cb0351c31be865ab826 (patch) | |
tree | c92a5e08c3420478641ccb9c08263cde89f2dcc0 /sysdeps/powerpc/powerpc64 | |
parent | 357bb400f1b25e48e265fd55b5996328d2a8c142 (diff) | |
download | glibc-14362ef154136223b0f77cb0351c31be865ab826.tar glibc-14362ef154136223b0f77cb0351c31be865ab826.tar.gz glibc-14362ef154136223b0f77cb0351c31be865ab826.tar.bz2 glibc-14362ef154136223b0f77cb0351c31be865ab826.zip |
powerpc: Fix strnlen/power7 build
This patch fixes the strnlen.S build with --disable-multi-arch option.
Diffstat (limited to 'sysdeps/powerpc/powerpc64')
-rw-r--r-- | sysdeps/powerpc/powerpc64/power7/strnlen.S | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/powerpc/powerpc64/power7/strnlen.S b/sysdeps/powerpc/powerpc64/power7/strnlen.S index 2de267fd35..b966f7b416 100644 --- a/sysdeps/powerpc/powerpc64/power7/strnlen.S +++ b/sysdeps/powerpc/powerpc64/power7/strnlen.S @@ -173,5 +173,6 @@ L(loop_small): blr END (__strnlen) +libc_hidden_def (__strnlen) weak_alias (__strnlen, strnlen) -libc_hidden_builtin_def (strnlen) +libc_hidden_def (strnlen) |