1 diff -ruN linux-2.4.32-old/lib/string.c linux-2.4.32-new/lib/string.c
2 --- linux-2.4.32-old/lib/string.c 2004-11-17 12:54:22.000000000 +0100
3 +++ linux-2.4.32-new/lib/string.c 2006-01-17 14:41:17.000000000 +0100
6 return (int)c1 - (int)c2;
8 +EXPORT_SYMBOL(strnicmp);
16 +EXPORT_SYMBOL(strcpy);
19 #ifndef __HAVE_ARCH_STRNCPY
24 +EXPORT_SYMBOL(strncpy);
27 #ifndef __HAVE_ARCH_STRCAT
32 +EXPORT_SYMBOL(strcat);
35 #ifndef __HAVE_ARCH_STRNCAT
40 +EXPORT_SYMBOL(strncat);
43 #ifndef __HAVE_ARCH_STRCMP
48 +EXPORT_SYMBOL(strcmp);
51 #ifndef __HAVE_ARCH_STRNCMP
56 +EXPORT_SYMBOL(strncmp);
59 #ifndef __HAVE_ARCH_STRCHR
64 +EXPORT_SYMBOL(strchr);
67 #ifndef __HAVE_ARCH_STRRCHR
72 +EXPORT_SYMBOL(strrchr);
75 #ifndef __HAVE_ARCH_STRLEN
80 +EXPORT_SYMBOL(strlen);
83 #ifndef __HAVE_ARCH_STRNLEN
88 +EXPORT_SYMBOL(strnlen);
91 #ifndef __HAVE_ARCH_STRSPN
96 +EXPORT_SYMBOL(strspn);
99 #ifndef __HAVE_ARCH_STRPBRK
104 +EXPORT_SYMBOL(strpbrk);
107 #ifndef __HAVE_ARCH_STRTOK
112 +EXPORT_SYMBOL(strsep);
115 #ifndef __HAVE_ARCH_MEMSET
120 +EXPORT_SYMBOL(memset);
123 #ifndef __HAVE_ARCH_BCOPY
128 +EXPORT_SYMBOL(memcpy);
131 #ifndef __HAVE_ARCH_MEMMOVE
136 +EXPORT_SYMBOL(memmove);
139 #ifndef __HAVE_ARCH_MEMCMP
144 +EXPORT_SYMBOL(memcmp);
147 #ifndef __HAVE_ARCH_MEMSCAN
152 +EXPORT_SYMBOL(memscan);
155 #ifndef __HAVE_ARCH_STRSTR
160 +EXPORT_SYMBOL(strstr);
163 #ifndef __HAVE_ARCH_MEMCHR
169 +EXPORT_SYMBOL(memchr);