From 70c312779ecad328a8003b93ebe253c4598b6980 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Wed, 5 May 2021 19:58:47 -0400 Subject: Add * OS detection * linux specfic limits header --- lib/cleanpath.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'lib/cleanpath.c') diff --git a/lib/cleanpath.c b/lib/cleanpath.c index 344c705..d7f207d 100644 --- a/lib/cleanpath.c +++ b/lib/cleanpath.c @@ -4,6 +4,10 @@ #include #include "cleanpath.h" +#if OS_LINUX +#include +#endif + /** * Split path into parts by sep * @param path a string (e.g. "/path1:/path2:/pathN") -- cgit