This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / lib / string.c
index c1b1b58..d4dbd2c 100644 (file)
@@ -75,7 +75,6 @@ char * strcpy(char * dest,const char *src)
                /* nothing */;
        return tmp;
 }
-EXPORT_SYMBOL(strcpy);
 #endif
 
 #ifndef __HAVE_ARCH_STRNCPY
@@ -99,7 +98,6 @@ char * strncpy(char * dest,const char *src,size_t count)
        }
        return dest;
 }
-EXPORT_SYMBOL(strncpy);
 #endif
 
 #ifndef __HAVE_ARCH_STRLCPY
@@ -145,7 +143,6 @@ char * strcat(char * dest, const char * src)
 
        return tmp;
 }
-EXPORT_SYMBOL(strcat);
 #endif
 
 #ifndef __HAVE_ARCH_STRNCAT
@@ -175,7 +172,6 @@ char * strncat(char *dest, const char *src, size_t count)
 
        return tmp;
 }
-EXPORT_SYMBOL(strncat);
 #endif
 
 #ifndef __HAVE_ARCH_STRLCAT
@@ -222,7 +218,6 @@ int strcmp(const char * cs,const char * ct)
 
        return __res;
 }
-EXPORT_SYMBOL(strcmp);
 #endif
 
 #ifndef __HAVE_ARCH_STRNCMP
@@ -244,7 +239,6 @@ int strncmp(const char * cs,const char * ct,size_t count)
 
        return __res;
 }
-EXPORT_SYMBOL(strncmp);
 #endif
 
 #ifndef __HAVE_ARCH_STRCHR
@@ -260,7 +254,6 @@ char * strchr(const char * s, int c)
                        return NULL;
        return (char *) s;
 }
-EXPORT_SYMBOL(strchr);
 #endif
 
 #ifndef __HAVE_ARCH_STRRCHR
@@ -278,7 +271,6 @@ char * strrchr(const char * s, int c)
        } while (--p >= s);
        return NULL;
 }
-EXPORT_SYMBOL(strrchr);
 #endif
 
 #ifndef __HAVE_ARCH_STRNCHR
@@ -295,7 +287,6 @@ char *strnchr(const char *s, size_t count, int c)
                        return (char *) s;
        return NULL;
 }
-EXPORT_SYMBOL(strnchr);
 #endif
 
 #ifndef __HAVE_ARCH_STRLEN
@@ -311,7 +302,6 @@ size_t strlen(const char * s)
                /* nothing */;
        return sc - s;
 }
-EXPORT_SYMBOL(strlen);
 #endif
 
 #ifndef __HAVE_ARCH_STRNLEN
@@ -328,7 +318,6 @@ size_t strnlen(const char * s, size_t count)
                /* nothing */;
        return sc - s;
 }
-EXPORT_SYMBOL(strnlen);
 #endif
 
 #ifndef __HAVE_ARCH_STRSPN
@@ -382,7 +371,6 @@ size_t strcspn(const char *s, const char *reject)
 
        return count;
 }      
-EXPORT_SYMBOL(strcspn);
 
 #ifndef __HAVE_ARCH_STRPBRK
 /**
@@ -402,7 +390,6 @@ char * strpbrk(const char * cs,const char * ct)
        }
        return NULL;
 }
-EXPORT_SYMBOL(strpbrk);
 #endif
 
 #ifndef __HAVE_ARCH_STRSEP
@@ -453,7 +440,6 @@ void * memset(void * s,int c,size_t count)
 
        return s;
 }
-EXPORT_SYMBOL(memset);
 #endif
 
 #ifndef __HAVE_ARCH_BCOPY
@@ -477,7 +463,6 @@ void bcopy(const void * srcp, void * destp, size_t count)
        while (count--)
                *dest++ = *src++;
 }
-EXPORT_SYMBOL(bcopy);
 #endif
 
 #ifndef __HAVE_ARCH_MEMCPY
@@ -499,7 +484,6 @@ void * memcpy(void * dest,const void *src,size_t count)
 
        return dest;
 }
-EXPORT_SYMBOL(memcpy);
 #endif
 
 #ifndef __HAVE_ARCH_MEMMOVE
@@ -530,7 +514,6 @@ void * memmove(void * dest,const void *src,size_t count)
 
        return dest;
 }
-EXPORT_SYMBOL(memmove);
 #endif
 
 #ifndef __HAVE_ARCH_MEMCMP
@@ -550,7 +533,6 @@ int memcmp(const void * cs,const void * ct,size_t count)
                        break;
        return res;
 }
-EXPORT_SYMBOL(memcmp);
 #endif
 
 #ifndef __HAVE_ARCH_MEMSCAN
@@ -575,7 +557,6 @@ void * memscan(void * addr, int c, size_t size)
        }
        return (void *) p;
 }
-EXPORT_SYMBOL(memscan);
 #endif
 
 #ifndef __HAVE_ARCH_STRSTR
@@ -600,7 +581,6 @@ char * strstr(const char * s1,const char * s2)
        }
        return NULL;
 }
-EXPORT_SYMBOL(strstr);
 #endif
 
 #ifndef __HAVE_ARCH_MEMCHR
@@ -623,5 +603,5 @@ void *memchr(const void *s, int c, size_t n)
        }
        return NULL;
 }
-EXPORT_SYMBOL(memchr);
+
 #endif