From 644b7bd2b62b10da2b464d71655ae2ed523fdc33 Mon Sep 17 00:00:00 2001 From: Cyan4973 Date: Mon, 23 Apr 2018 15:52:44 -0700 Subject: [PATCH] fixed minor declaration issue with clang on msys --- programs/util.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/programs/util.h b/programs/util.h index ff25106..ef6ca77 100644 --- a/programs/util.h +++ b/programs/util.h @@ -30,8 +30,9 @@ extern "C" { * Dependencies ******************************************/ #include "platform.h" /* PLATFORM_POSIX_VERSION */ -#include /* malloc */ #include /* size_t, ptrdiff_t */ +#include /* malloc */ +#include /* strlen, strncpy */ #include /* fprintf */ #include /* stat, utime */ #include /* stat */ -- 2.7.4