1
0
Fork 0
forked from len0rd/rockbox

Correct usage of ICODE_ATTR in memcpy.c and strlen.c

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7328 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2005-08-15 05:33:10 +00:00
parent f22eeee119
commit 073f83ada3
2 changed files with 4 additions and 2 deletions

View file

@ -32,6 +32,7 @@ QUICKREF
memcpy ansi pure
*/
#include "config.h"
#include <_ansi.h>
#include <stddef.h>
#include <limits.h>
@ -53,7 +54,7 @@ _PTR
_DEFUN (memcpy, (dst0, src0, len0),
_PTR dst0 _AND
_CONST _PTR src0 _AND
size_t len0) __attribute__ ((section (".icode")));
size_t len0) ICODE_ATTR;
_PTR
_DEFUN (memcpy, (dst0, src0, len0),