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
This commit is contained in:
parent
749c05e0fd
commit
a91e0fe441
|
@ -4,12 +4,12 @@
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
extern void *memcpy(void *dest, const void *src, size_t n);
|
void *memcpy(void *dest, const void *src, size_t n);
|
||||||
extern void *memmove(void *dest, const void *src, size_t n);
|
void *memmove(void *dest, const void *src, size_t n);
|
||||||
extern void *memset(void *s, int c, size_t n);
|
void *memset(void *s, int c, size_t n);
|
||||||
extern int memcmp(const void *s1, const void *s2, size_t n);
|
int memcmp(const void *s1, const void *s2, size_t n);
|
||||||
|
void *malloc(size_t size);
|
||||||
extern int sprintf(char * buf, const char *fmt, ...);
|
int sprintf(char * buf, const char *fmt, ...);
|
||||||
|
|
||||||
// yes, linux has fancy ones. We don't care. This stuff gets used
|
// 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.
|
// hardly at all. And the pain of including those files is just too high.
|
||||||
|
|
Loading…
Reference in New Issue