standalone eepro100_eeprom: fix build error
Building examples/standalone/eepro100_eeprom triggers this error:
In file included from include/common.h:629,
from eepro100_eeprom.c:24:
include/net.h: In function 'NetReadIP':
include/net.h:430: warning: implicit declaration of function 'memcpy'
eepro100_eeprom.c: At top level:
eepro100_eeprom.c:81: error: conflicting types for 'memcpy'
include/net.h:430: error: previous implicit declaration of 'memcpy' was here
Fix this.
Signed-off-by: Wolfgang Denk <wd@denx.de>
This commit is contained in:
parent
1bb1809558
commit
4e72fb15c9
|
|
@ -18,7 +18,6 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* avoid unnecessary memcpy function */
|
/* avoid unnecessary memcpy function */
|
||||||
#define __HAVE_ARCH_MEMCPY
|
|
||||||
#define _PPC_STRING_H_
|
#define _PPC_STRING_H_
|
||||||
|
|
||||||
#include <common.h>
|
#include <common.h>
|
||||||
|
|
@ -77,7 +76,7 @@ static inline short inw(long addr)
|
||||||
return swap16(*(volatile short *)(addr));
|
return swap16(*(volatile short *)(addr));
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void *memcpy(void *dst, const void *src, unsigned int len)
|
void *memcpy(void *dst, const void *src, unsigned int len)
|
||||||
{
|
{
|
||||||
char *ret = dst;
|
char *ret = dst;
|
||||||
while (len-- > 0) {
|
while (len-- > 0) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue