diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2008-08-01 11:39:35 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2008-08-01 11:39:35 +0000 |
commit | a91e0fe4410c0cac54ce14f6ebd5371829ed0500 (patch) | |
tree | 2bb047dbb45a3dd7c75119e0865e5e0cee6836f5 /src/include/string.h | |
parent | 749c05e0fd0aff1ba9d85138ec472f8b14457375 (diff) |
function prototypes don't need extern. (trivial)
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
Diffstat (limited to 'src/include/string.h')
-rw-r--r-- | src/include/string.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/include/string.h b/src/include/string.h index 3d056818cc..25e741e810 100644 --- a/src/include/string.h +++ b/src/include/string.h @@ -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. |