aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/boot/string.h
diff options
context:
space:
mode:
authorDavid Gibson <david@gibson.dropbear.id.au>2007-08-28 14:52:57 +1000
committerPaul Mackerras <paulus@samba.org>2007-09-14 01:33:19 +1000
commit0ae0b54565a8dcc2b98de694b998e765de15b713 (patch)
tree21bbfa5618d55460e2e90ef0e876b1c6c03b42f7 /arch/powerpc/boot/string.h
parent[POWERPC] IOMMU virtual merge is no longer experimental (diff)
downloadlinux-dev-0ae0b54565a8dcc2b98de694b998e765de15b713.tar.xz
linux-dev-0ae0b54565a8dcc2b98de694b998e765de15b713.zip
[POWERPC] Move bootwrapper's strchr() and strncmp() from .h to string.S
Currently the bootwrapper has implementations of strchr() and strncmp(), but they're inlines in flatdevtree_env.h, rather than in string.S with all the rest of the string functions. This moves them to string.S. Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to '')
-rw-r--r--arch/powerpc/boot/string.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/powerpc/boot/string.h b/arch/powerpc/boot/string.h
index 9fdff1cc0d70..4650030d1040 100644
--- a/arch/powerpc/boot/string.h
+++ b/arch/powerpc/boot/string.h
@@ -5,7 +5,9 @@
extern char *strcpy(char *dest, const char *src);
extern char *strncpy(char *dest, const char *src, size_t n);
extern char *strcat(char *dest, const char *src);
+extern char *strchr(const char *s, int c);
extern int strcmp(const char *s1, const char *s2);
+extern int strncmp(const char *s1, const char *s2, size_t n);
extern size_t strlen(const char *s);
extern size_t strnlen(const char *s, size_t count);