Repository: incubator-mynewt-core Updated Branches: refs/heads/develop e136d0896 -> 8092bf708
image_rsa: include missing string.h Avoid warning when using memcmp. Signed-off-by: Ricardo Salveti <[email protected]> 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/353857b5 Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/tree/353857b5 Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/diff/353857b5 Branch: refs/heads/develop Commit: 353857b54d0e35ca63d17bc6b8fe19456da09ac5 Parents: e136d08 Author: Ricardo Salveti <[email protected]> Authored: Wed Jan 18 11:41:39 2017 -0200 Committer: Christopher Collins <[email protected]> Committed: Mon Feb 6 14:53:00 2017 -0800 ---------------------------------------------------------------------- boot/bootutil/src/image_rsa.c | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/353857b5/boot/bootutil/src/image_rsa.c ---------------------------------------------------------------------- diff --git a/boot/bootutil/src/image_rsa.c b/boot/bootutil/src/image_rsa.c index 7b1f4d4..4890f46 100644 --- a/boot/bootutil/src/image_rsa.c +++ b/boot/bootutil/src/image_rsa.c @@ -17,6 +17,8 @@ * under the License. */ +#include <string.h> + #include "syscfg/syscfg.h" #if MYNEWT_VAL(BOOTUTIL_SIGN_RSA)
