summaryrefslogtreecommitdiffstats
path: root/arch/ppc
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2013-06-20 11:02:09 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2013-06-20 17:17:28 +0200
commitc179e7c46b573749bd59332c8b5d0a32a506fd8f (patch)
tree2156d78557fc9f1ec09252d2189659f21d0c527c /arch/ppc
parent7c3603a199873319cbff82fe07a887ccf3452b9b (diff)
downloadbarebox-c179e7c46b573749bd59332c8b5d0a32a506fd8f.tar.gz
barebox-c179e7c46b573749bd59332c8b5d0a32a506fd8f.tar.xz
ppc: remove strcasecmp/strncasecmp prototypes
ppc does not implement these, so remove the prototypes and use the ones from include/linux/string.h Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/ppc')
-rw-r--r--arch/ppc/include/asm/string.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/ppc/include/asm/string.h b/arch/ppc/include/asm/string.h
index d912a6b5fe..33d143f04e 100644
--- a/arch/ppc/include/asm/string.h
+++ b/arch/ppc/include/asm/string.h
@@ -13,8 +13,6 @@
#define __HAVE_ARCH_MEMCMP
#define __HAVE_ARCH_MEMCHR
-extern int strcasecmp(const char *, const char *);
-extern int strncasecmp(const char *, const char *, int);
extern char * strcpy(char *,const char *);
extern char * strncpy(char *,const char *, __kernel_size_t);
extern __kernel_size_t strlen(const char *);