From d5f8f8dc748c3422336da200ee0dbf8cfdd2626a Mon Sep 17 00:00:00 2001 From: diego Date: Mon, 13 Oct 2008 14:55:01 +0000 Subject: [PATCH] Add missing Cygwin header, fixes the warning: get_path.c:151: warning: implicit declaration of function `cygwin_conv_to_full_w in32_path' git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27756 b3059339-0415-0410-9bf9-f77b7e298cf2 --- get_path.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/get_path.c b/get_path.c index 76a0169519..16c93551c8 100644 --- a/get_path.c +++ b/get_path.c @@ -20,10 +20,15 @@ #include #endif -#ifdef WIN32 +#ifdef __MINGW32__ #include #endif +#ifdef __CYGWIN__ +#include +#include +#endif + #ifdef __OS2__ #define INCL_DOS #include