From f64d639d2b771a6fd2b67b213c531628d8ce1c83 Mon Sep 17 00:00:00 2001 From: diego Date: Fri, 30 Jan 2009 23:29:39 +0000 Subject: Use OS preprocessor checks with '#if defined()' consistently. Avoids undefined preprocessor directives warnings. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28399 b3059339-0415-0410-9bf9-f77b7e298cf2 --- get_path.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'get_path.c') diff --git a/get_path.c b/get_path.c index 1cb7bd8207..f5cf41354e 100644 --- a/get_path.c +++ b/get_path.c @@ -18,12 +18,12 @@ #include #include #include -#elif __MINGW32__ +#elif defined(__MINGW32__) #include -#elif __CYGWIN__ +#elif defined(__CYGWIN__) #include #include -#elif __OS2__ +#elif defined(__OS2__) #define INCL_DOS #include #endif -- cgit v1.2.3