diff options
-rw-r--r-- | include/linux/string.h | 17 | ||||
-rw-r--r-- | lib/string.c | 2 |
2 files changed, 14 insertions, 5 deletions
diff --git a/include/linux/string.h b/include/linux/string.h index dee221429ad0..c61306da8c52 100644 --- a/include/linux/string.h +++ b/include/linux/string.h | |||
@@ -13,11 +13,6 @@ | |||
13 | extern "C" { | 13 | extern "C" { |
14 | #endif | 14 | #endif |
15 | 15 | ||
16 | extern char * strpbrk(const char *,const char *); | ||
17 | extern char * strsep(char **,const char *); | ||
18 | extern __kernel_size_t strspn(const char *,const char *); | ||
19 | extern __kernel_size_t strcspn(const char *,const char *); | ||
20 | |||
21 | extern char *strndup_user(const char __user *, long); | 16 | extern char *strndup_user(const char __user *, long); |
22 | 17 | ||
23 | /* | 18 | /* |
@@ -70,6 +65,18 @@ extern __kernel_size_t strlen(const char *); | |||
70 | #ifndef __HAVE_ARCH_STRNLEN | 65 | #ifndef __HAVE_ARCH_STRNLEN |
71 | extern __kernel_size_t strnlen(const char *,__kernel_size_t); | 66 | extern __kernel_size_t strnlen(const char *,__kernel_size_t); |
72 | #endif | 67 | #endif |
68 | #ifndef __HAVE_ARCH_STRPBRK | ||
69 | extern char * strpbrk(const char *,const char *); | ||
70 | #endif | ||
71 | #ifndef __HAVE_ARCH_STRSEP | ||
72 | extern char * strsep(char **,const char *); | ||
73 | #endif | ||
74 | #ifndef __HAVE_ARCH_STRSPN | ||
75 | extern __kernel_size_t strspn(const char *,const char *); | ||
76 | #endif | ||
77 | #ifndef __HAVE_ARCH_STRCSPN | ||
78 | extern __kernel_size_t strcspn(const char *,const char *); | ||
79 | #endif | ||
73 | 80 | ||
74 | #ifndef __HAVE_ARCH_MEMSET | 81 | #ifndef __HAVE_ARCH_MEMSET |
75 | extern void * memset(void *,int,__kernel_size_t); | 82 | extern void * memset(void *,int,__kernel_size_t); |
diff --git a/lib/string.c b/lib/string.c index 037a48acedbb..7be6f0a87e83 100644 --- a/lib/string.c +++ b/lib/string.c | |||
@@ -362,6 +362,7 @@ size_t strspn(const char *s, const char *accept) | |||
362 | EXPORT_SYMBOL(strspn); | 362 | EXPORT_SYMBOL(strspn); |
363 | #endif | 363 | #endif |
364 | 364 | ||
365 | #ifndef __HAVE_ARCH_STRCSPN | ||
365 | /** | 366 | /** |
366 | * strcspn - Calculate the length of the initial substring of @s which does | 367 | * strcspn - Calculate the length of the initial substring of @s which does |
367 | * not contain letters in @reject | 368 | * not contain letters in @reject |
@@ -384,6 +385,7 @@ size_t strcspn(const char *s, const char *reject) | |||
384 | return count; | 385 | return count; |
385 | } | 386 | } |
386 | EXPORT_SYMBOL(strcspn); | 387 | EXPORT_SYMBOL(strcspn); |
388 | #endif | ||
387 | 389 | ||
388 | #ifndef __HAVE_ARCH_STRPBRK | 390 | #ifndef __HAVE_ARCH_STRPBRK |
389 | /** | 391 | /** |