diff options
Diffstat (limited to 'arch/m68k/include/asm/string.h')
| -rw-r--r-- | arch/m68k/include/asm/string.h | 14 | 
1 files changed, 0 insertions, 14 deletions
diff --git a/arch/m68k/include/asm/string.h b/arch/m68k/include/asm/string.h index 32198454da7..9aea9f11fa2 100644 --- a/arch/m68k/include/asm/string.h +++ b/arch/m68k/include/asm/string.h @@ -4,15 +4,6 @@  #include <linux/types.h>  #include <linux/compiler.h> -static inline size_t __kernel_strlen(const char *s) -{ -	const char *sc; - -	for (sc = s; *sc++; ) -		; -	return sc - s - 1; -} -  static inline char *__kernel_strcpy(char *dest, const char *src)  {  	char *xdest = dest; @@ -27,11 +18,6 @@ static inline char *__kernel_strcpy(char *dest, const char *src)  #ifndef __IN_STRING_C -#define __HAVE_ARCH_STRLEN -#define strlen(s)	(__builtin_constant_p(s) ?	\ -			 __builtin_strlen(s) :		\ -			 __kernel_strlen(s)) -  #define __HAVE_ARCH_STRNLEN  static inline size_t strnlen(const char *s, size_t count)  {  |