diff options
author | Michael Brown <mcb30@ipxe.org> | 2012-11-04 22:50:27 +0000 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2012-11-12 16:58:49 +0000 |
commit | 61c6af3f0b64b711f4a104aedad036a3d12093eb (patch) | |
tree | 9884fe6b50f35aba338108d3ee097ad26bbdcfc5 /src/include/string.h | |
parent | fc30b13b25d66c711778fee50ce2d5609ad361ee (diff) | |
download | ipxe-61c6af3f0b64b711f4a104aedad036a3d12093eb.tar.gz |
[libc] Convert memcpy() from a macro to an inline function
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include/string.h')
-rw-r--r-- | src/include/string.h | 1 |
1 files changed, 1 insertions, 0 deletions
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; |