diff options
author | David Gibson <david@gibson.dropbear.id.au> | 2007-08-28 04:52:57 (GMT) |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-09-13 15:33:19 (GMT) |
commit | 0ae0b54565a8dcc2b98de694b998e765de15b713 (patch) | |
tree | 21bbfa5618d55460e2e90ef0e876b1c6c03b42f7 /arch/powerpc/boot/string.h | |
parent | 768cc2d3b2768ca34f254e8190f1f9e297b09ad4 (diff) | |
download | linux-0ae0b54565a8dcc2b98de694b998e765de15b713.tar.xz |
[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 'arch/powerpc/boot/string.h')
-rw-r--r-- | arch/powerpc/boot/string.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/powerpc/boot/string.h b/arch/powerpc/boot/string.h index 9fdff1c..4650030 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); |