diff options
Diffstat (limited to 'lib/string.c')
-rw-r--r-- | lib/string.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/string.c b/lib/string.c index b3c28a3f6332..064f6315b1c3 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 | /** |
@@ -403,6 +405,7 @@ char *strpbrk(const char *cs, const char *ct) | |||
403 | } | 405 | } |
404 | return NULL; | 406 | return NULL; |
405 | } | 407 | } |
408 | EXPORT_SYMBOL(strpbrk); | ||
406 | #endif | 409 | #endif |
407 | 410 | ||
408 | #ifndef __HAVE_ARCH_STRSEP | 411 | #ifndef __HAVE_ARCH_STRSEP |
@@ -467,7 +470,7 @@ EXPORT_SYMBOL(memset); | |||
467 | void *memcpy(void *dest, const void *src, size_t count) | 470 | void *memcpy(void *dest, const void *src, size_t count) |
468 | { | 471 | { |
469 | char *tmp = dest; | 472 | char *tmp = dest; |
470 | char *s = src; | 473 | const char *s = src; |
471 | 474 | ||
472 | while (count--) | 475 | while (count--) |
473 | *tmp++ = *s++; | 476 | *tmp++ = *s++; |