X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=src%2Funix_apply.c;h=6b3ede19e82778658a1af73aa8e36eed1fb66362;hp=969b8d2b6f74354eb7f0a6c7e0da2d3b80abc860;hb=e8c3ca2d1d0cac3d64985b45a9f654d2029a7518;hpb=726f9bbd0bd664294fce8a50be1d5b6881df8d16 diff --git a/src/unix_apply.c b/src/unix_apply.c index 969b8d2b..6b3ede19 100644 --- a/src/unix_apply.c +++ b/src/unix_apply.c @@ -21,11 +21,12 @@ * along with wimlib; if not, see http://www.gnu.org/licenses/. */ -#include "config.h" +#ifndef __WIN32__ -#ifdef HAVE_UTIME_H -# include +#ifdef HAVE_CONFIG_H +# include "config.h" #endif + #include #include #include @@ -33,10 +34,15 @@ #include #include #include +#ifdef HAVE_UTIME_H +# include +#endif -#include "timestamp.h" -#include "wimlib_internal.h" -#include "lookup_table.h" +#include "wimlib/apply.h" +#include "wimlib/error.h" +#include "wimlib/lookup_table.h" +#include "wimlib/reparse.h" +#include "wimlib/timestamp.h" /* Returns the number of components of @path. */ static unsigned @@ -491,3 +497,5 @@ unix_do_apply_dentry_timestamps(const char *output_path, } return 0; } + +#endif /* !__WIN32__ */