Commit 7eec5092 authored by Varun Wadekar's avatar Varun Wadekar
Browse files

stdlib: add memcpy16() to string.h


This patch exports memcpy16() for platforms, as an option to
memcpy().

Change-Id: I5d4e1cfb4608ec3674224b1447fdd740de549b1f
Signed-off-by: default avatarVarun Wadekar <vwadekar@nvidia.com>
parent 8ab06d2f
No related merge requests found
Showing with 1 addition and 0 deletions
+1 -0
......@@ -52,6 +52,7 @@ __BEGIN_DECLS
void *memchr(const void *, int, size_t) __pure;
int memcmp(const void *, const void *, size_t) __pure;
void *memcpy(void * __restrict, const void * __restrict, size_t);
void *memcpy16(void * __restrict, const void * __restrict, size_t);
void *memmove(void *, const void *, size_t);
void *memset(void *, int, size_t);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment