From 61c6af3f0b64b711f4a104aedad036a3d12093eb Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Sun, 4 Nov 2012 22:50:27 +0000 Subject: [libc] Convert memcpy() from a macro to an inline function Signed-off-by: Michael Brown --- src/include/string.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/include') diff --git a/src/include/string.h b/src/include/string.h index 2fd6acf16..3482e1b22 100644 --- a/src/include/string.h +++ b/src/include/string.h @@ -37,6 +37,7 @@ char * __pure strpbrk(const char * cs,const char * ct) __nonnull; char * strtok(char * s,const char * ct) __nonnull; char * strsep(char **s, const char *ct) __nonnull; void * memset(void * s,int c,size_t count) __nonnull; +void * memcpy ( void *dest, const void *src, size_t len ) __nonnull; void * memmove(void * dest,const void *src,size_t count) __nonnull; int __pure memcmp(const void * cs,const void * ct, size_t count) __nonnull; -- cgit v1.2.3-55-g7522