SYNOPSIS
ecosconfig -q new <plf> stubs
ecosconfig tree
make -s
headers finished
/opt/ecos/ecos/packages/hal/arm/arch/current/src/arm_stub.c: In function
`get_register_as_bytes':
/opt/ecos/ecos/packages/hal/arm/arch/current/src/arm_stub.c:215: warning:
implicit declaration of function `memcpy'
build finished
well, here is just a 1-line fixative
Sergeidiff -urN hal/arm/arch/current/ChangeLog hal/arm/arch/current/ChangeLog.fixed
--- hal/arm/arch/current/ChangeLog
+++ hal/arm/arch/current/ChangeLog.fixed
@@ -1,3 +1,7 @@
+2007-01-09 Sergei Gavrikov <[EMAIL PROTECTED]>
+
+ * src/arm-stub.c: Added string.h header (`memcpy' declaration).
+
2006-09-06 Daniel NИri <[EMAIL PROTECTED]>
* include/basetype.h: (CYG_DOUBLE_BYTEORDER): Add proper
diff -urN hal/arm/arch/current/src/arm_stub.c
hal/arm/arch/current/src/arm_stub.c.fixed
--- hal/arm/arch/current/src/arm_stub.c
+++ hal/arm/arch/current/src/arm_stub.c.fixed
@@ -52,6 +52,7 @@
//========================================================================
#include <stddef.h>
+#include <string.h>
#include <pkgconf/hal.h>