From 8d096bd31779551d25da5edb0372f6c004bfe1d1 Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Tue, 6 Sep 2011 09:37:52 +1000 Subject: [PATCH] Include libgen.h in opt.c to fix win32 compilation warnings. --- ccan/opt/opt.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ccan/opt/opt.c b/ccan/opt/opt.c index e3ccdbd0..9bc34d92 100644 --- a/ccan/opt/opt.c +++ b/ccan/opt/opt.c @@ -7,6 +7,7 @@ #ifndef WIN32 #include #else +#include #define errx(status, fmt, ...) { \ fprintf(stderr, fmt, __VA_ARGS__); \ fprintf(stderr, "\n"); \