1 Index: linux-2.4.35.4/lib/string.c
2 ===================================================================
3 --- linux-2.4.35.4.orig/lib/string.c 2007-12-15 05:19:38.866635920 +0100
4 +++ linux-2.4.35.4/lib/string.c 2007-12-15 05:20:03.080015763 +0100
7 return (int)c1 - (int)c2;
9 +EXPORT_SYMBOL(strnicmp);
17 +EXPORT_SYMBOL(strcpy);
20 #ifndef __HAVE_ARCH_STRNCPY
25 +EXPORT_SYMBOL(strncpy);
28 #ifndef __HAVE_ARCH_STRCAT
33 +EXPORT_SYMBOL(strcat);
36 #ifndef __HAVE_ARCH_STRNCAT
41 +EXPORT_SYMBOL(strncat);
44 #ifndef __HAVE_ARCH_STRCMP
49 +EXPORT_SYMBOL(strcmp);
52 #ifndef __HAVE_ARCH_STRNCMP
57 +EXPORT_SYMBOL(strncmp);
60 #ifndef __HAVE_ARCH_STRCHR
65 +EXPORT_SYMBOL(strchr);
68 #ifndef __HAVE_ARCH_STRRCHR
73 +EXPORT_SYMBOL(strrchr);
76 #ifndef __HAVE_ARCH_STRLEN
81 +EXPORT_SYMBOL(strlen);
84 #ifndef __HAVE_ARCH_STRNLEN
89 +EXPORT_SYMBOL(strnlen);
92 #ifndef __HAVE_ARCH_STRSPN
97 +EXPORT_SYMBOL(strspn);
100 #ifndef __HAVE_ARCH_STRPBRK
105 +EXPORT_SYMBOL(strpbrk);
108 #ifndef __HAVE_ARCH_STRTOK
113 +EXPORT_SYMBOL(strsep);
116 #ifndef __HAVE_ARCH_MEMSET
121 +EXPORT_SYMBOL(memset);
124 #ifndef __HAVE_ARCH_BCOPY
129 +EXPORT_SYMBOL(memcpy);
132 #ifndef __HAVE_ARCH_MEMMOVE
137 +EXPORT_SYMBOL(memmove);
140 #ifndef __HAVE_ARCH_MEMCMP
145 +EXPORT_SYMBOL(memcmp);
148 #ifndef __HAVE_ARCH_MEMSCAN
153 +EXPORT_SYMBOL(memscan);
156 #ifndef __HAVE_ARCH_STRSTR
161 +EXPORT_SYMBOL(strstr);
164 #ifndef __HAVE_ARCH_MEMCHR
170 +EXPORT_SYMBOL(memchr);