about summary refs log tree commit diff
path: root/sysdeps/i386/i686/multiarch/strncat-c.c
diff options
context:
space:
mode:
authorLiubov Dmitrieva <liubov.dmitrieva@intel.com>2011-08-04 15:33:38 -0400
committerUlrich Drepper <drepper@gmail.com>2011-08-04 15:33:38 -0400
commit5fa16e9b016b34788b9a48b5ab9752a583bb987c (patch)
treee62092078eefe8f18b9491d98cff56f244332669 /sysdeps/i386/i686/multiarch/strncat-c.c
parent8c1a459f9a64abee69c154c8a0e5ab9be86256e4 (diff)
downloadglibc-5fa16e9b016b34788b9a48b5ab9752a583bb987c.tar.gz
glibc-5fa16e9b016b34788b9a48b5ab9752a583bb987c.tar.xz
glibc-5fa16e9b016b34788b9a48b5ab9752a583bb987c.zip
Improve x86-32 strcat functions with SSE2/SSSE3
Diffstat (limited to 'sysdeps/i386/i686/multiarch/strncat-c.c')
-rw-r--r--sysdeps/i386/i686/multiarch/strncat-c.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/sysdeps/i386/i686/multiarch/strncat-c.c b/sysdeps/i386/i686/multiarch/strncat-c.c
new file mode 100644
index 0000000000..132a000545
--- /dev/null
+++ b/sysdeps/i386/i686/multiarch/strncat-c.c
@@ -0,0 +1,8 @@
+#define STRNCAT __strncat_ia32
+#ifdef SHARED
+#undef libc_hidden_def
+#define libc_hidden_def(name) \
+  __hidden_ver1 (__strncat_ia32, __GI___strncat, __strncat_ia32);
+#endif
+
+#include "string/strncat.c"