From 9664dec490808a834ca009ac293eca9ef25a6e8e Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Thu, 6 May 2021 17:10:52 -0400 Subject: Fix include --- lib/cleanpath.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/cleanpath.c b/lib/cleanpath.c index 9c46c38..c64da40 100644 --- a/lib/cleanpath.c +++ b/lib/cleanpath.c @@ -1,9 +1,12 @@ #include #include -#include #include "config.h" #include "cleanpath.h" +#if !OS_WINDOWS +#include +#endif + /** * Split path into parts by sep * @param path a string (e.g. "/path1:/path2:/pathN") -- cgit