From 99710781cc47002612e609c7dc5f34692b64e9b3 Mon Sep 17 00:00:00 2001 From: Liubov Dmitrieva Date: Tue, 19 Jul 2011 17:11:54 -0400 Subject: Improve 64 bit strcat functions with SSE2/SSSE3 --- string/strncat.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'string') diff --git a/string/strncat.c b/string/strncat.c index 2e2de11508..72d9d697ac 100644 --- a/string/strncat.c +++ b/string/strncat.c @@ -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; -- cgit 1.4.1