commit | 8fbd7ee6b2b579ce829e16598febb5559734ca90 | [log] [tgz] |
---|---|---|
author | Andrew Scull <ascull@google.com> | Fri Apr 05 14:36:34 2019 +0100 |
committer | Andrew Scull <ascull@google.com> | Fri Apr 05 17:59:42 2019 +0000 |
tree | 8fefa4dd4dfd6d02e373b8066fa988dcc2380f9d | |
parent | a1aa2ba71bcea9955850d72b82046befc5f05b4d [diff] [blame] |
Move from memmove to memmove_s. Change-Id: I791029d82c2ed6d3d9f23eada87730ae037c9b6c
diff --git a/inc/hf/std.h b/inc/hf/std.h index f502346..101516e 100644 --- a/inc/hf/std.h +++ b/inc/hf/std.h
@@ -31,3 +31,4 @@ */ void memset_s(void *dest, rsize_t destsz, int ch, rsize_t count); void memcpy_s(void *dest, rsize_t destsz, const void *src, rsize_t count); +void memmove_s(void *dest, rsize_t destsz, const void *src, rsize_t count);