From: Eric Biggers Date: Tue, 13 Nov 2012 00:09:15 +0000 (-0600) Subject: Header fix: Add time.h X-Git-Tag: v1.1.0~16 X-Git-Url: https://wimlib.net/git/?a=commitdiff_plain;ds=sidebyside;h=a21ea64188245e4928879928eaf05e60b5065840;p=wimlib Header fix: Add time.h NTFS-3g headers seem to require time.h to be included first. --- diff --git a/src/resource.c b/src/resource.c index 1871cfcc..a2772c1c 100644 --- a/src/resource.c +++ b/src/resource.c @@ -30,6 +30,7 @@ #include "dentry.h" #ifdef WITH_NTFS_3G +#include #include #include #include diff --git a/src/wim.c b/src/wim.c index bb76f855..3d6febf1 100644 --- a/src/wim.c +++ b/src/wim.c @@ -32,6 +32,7 @@ #include "dentry.h" #ifdef WITH_NTFS_3G +#include #include #endif