bootutil; need to include string.h when building for native.
Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/commit/68d2e555 Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/tree/68d2e555 Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/diff/68d2e555 Branch: refs/heads/develop Commit: 68d2e555dc677d7fbf0c63bab7f5ae9103693494 Parents: 551ac6f Author: Marko Kiiskila <[email protected]> Authored: Fri Dec 30 18:54:18 2016 -0800 Committer: Marko Kiiskila <[email protected]> Committed: Fri Dec 30 18:54:18 2016 -0800 ---------------------------------------------------------------------- boot/bootutil/src/image_ec.c | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/68d2e555/boot/bootutil/src/image_ec.c ---------------------------------------------------------------------- diff --git a/boot/bootutil/src/image_ec.c b/boot/bootutil/src/image_ec.c index f0c5d35..de08b13 100644 --- a/boot/bootutil/src/image_ec.c +++ b/boot/bootutil/src/image_ec.c @@ -17,6 +17,8 @@ * under the License. */ +#include <string.h> + #include "syscfg/syscfg.h" #if MYNEWT_VAL(BOOTUTIL_SIGN_EC)
