1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

Improve 64 bit strcat functions with SSE2/SSSE3

This commit is contained in:
Liubov Dmitrieva
2011-07-19 17:11:54 -04:00
committed by Ulrich Drepper
parent 7dc6bd90c5
commit 99710781cc
18 changed files with 1523 additions and 321 deletions

View File

@ -24,10 +24,12 @@
typedef char reg_char;
#endif
#undef strncat
#ifndef STRNCAT
# define STRNCAT strncat
#endif
char *
strncat (s1, s2, n)
STRNCAT (s1, s2, n)
char *s1;
const char *s2;
size_t n;