1
0
Fork 0
forked from len0rd/rockbox

Added #include <string.h> to memmove.c, memcpy.c and strcat.c

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17285 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Bertrik Sikken 2008-04-28 20:39:44 +00:00
parent cbd7fa40f6
commit 9c0abbf838
3 changed files with 5 additions and 5 deletions

View file

@ -34,8 +34,7 @@ QUICKREF
#include "config.h"
#include <_ansi.h>
#include <stddef.h>
#include <limits.h>
#include <string.h>
/* Nonzero if either X or Y is not aligned on a "long" boundary. */
#define UNALIGNED(X, Y) \
@ -47,7 +46,7 @@ QUICKREF
/* How many bytes are copied each iteration of the word copy loop. */
#define LITTLEBLOCKSIZE (sizeof (long))
/* Threshhold for punting to the byte copier. */
/* Threshold for punting to the byte copier. */
#define TOO_SMALL(LEN) ((LEN) < BIGBLOCKSIZE)
_PTR

View file

@ -37,8 +37,7 @@ QUICKREF
#include "config.h"
#include <_ansi.h>
#include <stddef.h>
#include <limits.h>
#include <string.h>
/* Nonzero if either X or Y is not aligned on a "long" boundary. */
#define UNALIGNED(X, Y) \

View file

@ -1,3 +1,5 @@
#include <string.h>
char *strcat(char *s1,
const char *s2)
{