diff options
author | Semih Hazar <semih.hazar@indefia.com> | 2007-08-20 19:00:01 +0300 |
---|---|---|
committer | Haavard Skinnemoen <hskinnemoen@atmel.com> | 2007-08-27 14:56:29 +0200 |
commit | 2c05fd125744981e5f2828d24e66ccc20a77d25d (patch) | |
tree | 85285fc545a8e7f1ae1e9dc4b97ddd76b6fe49d7 | |
parent | a08458303e7f9db67f296980036d3292c35cb45c (diff) | |
download | u-boot-imx-2c05fd125744981e5f2828d24e66ccc20a77d25d.zip u-boot-imx-2c05fd125744981e5f2828d24e66ccc20a77d25d.tar.gz u-boot-imx-2c05fd125744981e5f2828d24e66ccc20a77d25d.tar.bz2 |
AVR32: Change prototype of memset
Signed-off-by: Semih Hazar <semih.hazar@indefia.com>
Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
-rw-r--r-- | include/asm-avr32/string.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-avr32/string.h b/include/asm-avr32/string.h index 8b05d1a..58582a3 100644 --- a/include/asm-avr32/string.h +++ b/include/asm-avr32/string.h @@ -23,6 +23,6 @@ #define __ASM_AVR32_STRING_H #define __HAVE_ARCH_MEMSET -extern void *memset(void *s, int c, size_t n); +extern void *memset(void *s, int c, __kernel_size_t n); #endif /* __ASM_AVR32_STRING_H */ |