diff options
author | Adhemerval Zanella <azanella@linux.vnet.ibm.com> | 2013-10-14 08:58:17 -0500 |
---|---|---|
committer | Adhemerval Zanella <azanella@linux.vnet.ibm.com> | 2013-12-06 05:47:01 -0600 |
commit | 0d0607d9ab7390a66e514a1d1cfb01f889e00d47 (patch) | |
tree | d24431c8c0b7a01685fa5d65769d515eedf2bcf3 /sysdeps/powerpc/powerpc32/power4/multiarch/strncase-power7.c | |
parent | 4dfd5c8647ada50789523697d0613a2f52e6ffb6 (diff) | |
download | glibc-0d0607d9ab7390a66e514a1d1cfb01f889e00d47.tar.gz glibc-0d0607d9ab7390a66e514a1d1cfb01f889e00d47.tar.xz glibc-0d0607d9ab7390a66e514a1d1cfb01f889e00d47.zip |
PowerPC: multiarch strncasecmp for PowerPC32
Diffstat (limited to 'sysdeps/powerpc/powerpc32/power4/multiarch/strncase-power7.c')
-rw-r--r-- | sysdeps/powerpc/powerpc32/power4/multiarch/strncase-power7.c | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/sysdeps/powerpc/powerpc32/power4/multiarch/strncase-power7.c b/sysdeps/powerpc/powerpc32/power4/multiarch/strncase-power7.c new file mode 100644 index 0000000000..4aaa63815e --- /dev/null +++ b/sysdeps/powerpc/powerpc32/power4/multiarch/strncase-power7.c @@ -0,0 +1,26 @@ +/* Optimized strcasecmp_l implememtation for POWER7. + Copyright (C) 2013 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + <http://www.gnu.org/licenses/>. */ + + +#include <string.h> + +#define __strncasecmp __strncasecmp_power7 + +extern __typeof (strncasecmp) __strncasecmp_power7 attribute_hidden; + +#include <string/strncase.c> |