From 06cba06e461f9c4961cf56be8d5fc2420f9678c5 Mon Sep 17 00:00:00 2001 From: NiLuJe Date: Sun, 22 Dec 2013 23:26:04 +0100 Subject: [PATCH] Fix cpio build on MinGW. Exact same concept as the previous commit. --- cpio/cpio_platform.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cpio/cpio_platform.h b/cpio/cpio_platform.h index 31d9a738f..58d2edbcd 100644 --- a/cpio/cpio_platform.h +++ b/cpio/cpio_platform.h @@ -42,6 +42,10 @@ #include "config.h" #endif +#if defined(_WIN32) && !defined(__CYGWIN__) +#include "cpio_windows.h" +#endif + /* Get a real definition for __FBSDID if we can */ #if HAVE_SYS_CDEFS_H #include @@ -70,8 +74,4 @@ #define __LA_DEAD #endif -#if defined(_WIN32) && !defined(__CYGWIN__) -#include "cpio_windows.h" -#endif - #endif /* !CPIO_PLATFORM_H_INCLUDED */ -- 2.47.3