diff options
author | randy_dunlap <rdunlap@xenotime.net> | 2005-06-25 17:58:39 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-25 19:24:57 -0400 |
commit | 09dbb4768c962ac00f9ff416328a7e6bfbd92b21 (patch) | |
tree | 69591625d4c7d7a996d8dd076984e484119a3633 | |
parent | 23b34f46fb762796e5c9c37e50d5a6cb56fd71fe (diff) |
[PATCH] x86-64: add memcpy/memset prototypes
Put function prototypes for memset() and memcpy() ahead of where
there are used, to kill sparse warnings:
arch/x86_64/boot/compressed/../../../../lib/inflate.c:317:3: warning: undefined identifier 'memset'
arch/x86_64/boot/compressed/../../../../lib/inflate.c:601:11: warning: undefined identifier 'memcpy'
arch/x86_64/boot/compressed/misc.c:151:2: warning: undefined identifier 'memcpy'
arch/x86_64/boot/compressed/../../../../lib/inflate.c:317:3: warning: call with no type!
arch/x86_64/boot/compressed/../../../../lib/inflate.c:601:17: warning: call with no type!
arch/x86_64/boot/compressed/misc.c:151:9: warning: call with no type!
Signed-off-by: randy_dunlap <rdunlap@xenotime.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r-- | arch/x86_64/boot/compressed/misc.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/x86_64/boot/compressed/misc.c b/arch/x86_64/boot/compressed/misc.c index c43cedb5c1d7..f992aef141b7 100644 --- a/arch/x86_64/boot/compressed/misc.c +++ b/arch/x86_64/boot/compressed/misc.c | |||
@@ -93,6 +93,9 @@ static unsigned long output_ptr = 0; | |||
93 | static void *malloc(int size); | 93 | static void *malloc(int size); |
94 | static void free(void *where); | 94 | static void free(void *where); |
95 | 95 | ||
96 | void* memset(void* s, int c, unsigned n); | ||
97 | void* memcpy(void* dest, const void* src, unsigned n); | ||
98 | |||
96 | static void putstr(const char *); | 99 | static void putstr(const char *); |
97 | 100 | ||
98 | extern int end; | 101 | extern int end; |