changeset 624:9147dfad9c52

* src/sa1100mm_misc.c: Replaced explicit prototype of memset with #include <string.h>.
author jlarmour
date Thu, 13 Feb 2003 19:12:22 +0000
parents 8022847f1b51
children edfa9000e66d
files packages/hal/arm/sa11x0/sa1100mm/current/ChangeLog packages/hal/arm/sa11x0/sa1100mm/current/src/sa1100mm_misc.c
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/packages/hal/arm/sa11x0/sa1100mm/current/ChangeLog
+++ b/packages/hal/arm/sa11x0/sa1100mm/current/ChangeLog
@@ -1,3 +1,7 @@
+2003-02-13  Patrick Doyle  <wpd@delcomsys.com>
+	* src/sa1100mm_misc.c: Replaced explicit prototype of memset with
+	#include <string.h>.
+
 2003-02-10  Nick Garnett  <nickg@calivar.com>
 
 	* misc/redboot_ROM.ecm:
--- a/packages/hal/arm/sa11x0/sa1100mm/current/src/sa1100mm_misc.c
+++ b/packages/hal/arm/sa11x0/sa1100mm/current/src/sa1100mm_misc.c
@@ -72,7 +72,7 @@
 // All the MM table layout is here:
 #include <cyg/hal/hal_mm.h>
 
-externC void* memset(void *, int, size_t);
+#include <string.h> // memset
 
 void
 hal_mmu_init(void)