function prototypes don't need extern. (trivial)
authorStefan Reinauer <stepan@coresystems.de>
Fri, 1 Aug 2008 11:39:35 +0000 (11:39 +0000)
committerStefan Reinauer <stepan@openbios.org>
Fri, 1 Aug 2008 11:39:35 +0000 (11:39 +0000)
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3448 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

src/include/string.h

index 3d056818cce9e9e28ca48312d641fe67d16185c6..25e741e810156f5f4f2198b2c57661ee88cf0f57 100644 (file)
@@ -4,12 +4,12 @@
 #include <stddef.h>
 #include <stdlib.h>
 
-extern void *memcpy(void *dest, const void *src, size_t n);
-extern void *memmove(void *dest, const void *src, size_t n);
-extern void *memset(void *s, int c, size_t n);
-extern int memcmp(const void *s1, const void *s2, size_t n);
-
-extern int sprintf(char * buf, const char *fmt, ...);
+void *memcpy(void *dest, const void *src, size_t n);
+void *memmove(void *dest, const void *src, size_t n);
+void *memset(void *s, int c, size_t n);
+int memcmp(const void *s1, const void *s2, size_t n);
+void *malloc(size_t size);
+int sprintf(char * buf, const char *fmt, ...);
 
 // yes, linux has fancy ones. We don't care. This stuff gets used 
 // hardly at all. And the pain of including those files is just too high.