mingw: fix build with autotools

This commit is contained in:
Saúl Ibarra Corretgé 2014-03-12 08:53:43 +01:00
parent e89740a957
commit d1ac594480

View File

@ -26,8 +26,13 @@
#include <stdlib.h>
#include <string.h>
#ifndef _WIN32
#include <unistd.h>
#ifdef _WIN32
# if defined(__MINGW32__)
# include <basetyps.h>
# endif
# include <shellapi.h>
#else
# include <unistd.h>
#endif