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
This commit is contained in:
diego 2008-10-13 14:55:01 +00:00
parent e00c1a9e6d
commit d5f8f8dc74
1 changed files with 6 additions and 1 deletions

View File

@ -20,10 +20,15 @@
#include <unistd.h>
#endif
#ifdef WIN32
#ifdef __MINGW32__
#include <windows.h>
#endif
#ifdef __CYGWIN__
#include <windows.h>
#include <sys/cygwin.h>
#endif
#ifdef __OS2__
#define INCL_DOS
#include <os2.h>