commit | a1aa2ba71bcea9955850d72b82046befc5f05b4d | [log] [tgz] |
---|---|---|
author | Andrew Scull <ascull@google.com> | Fri Apr 05 11:49:02 2019 +0100 |
committer | Andrew Scull <ascull@google.com> | Fri Apr 05 17:21:43 2019 +0100 |
tree | f7bbcc574a57de0c1d3c7f6cc1e686b1d10f8c8a | |
parent | 2b5fbad49cdfcdad3e8771af3f967480eb708a5f [diff] [blame] |
Move from memcpy to memcpy_s. Change-Id: If7d53c6e54428f01f14528c3f281331d308af56a
diff --git a/inc/hf/std.h b/inc/hf/std.h index 73c7d1c..f502346 100644 --- a/inc/hf/std.h +++ b/inc/hf/std.h
@@ -30,3 +30,4 @@ * have a constraint handler that panics. */ 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);