(svn r6096) -Fix: silence a warning on mingw (tnx Frostregen)

This commit is contained in:
truelight 2006-08-24 15:21:09 +00:00
parent 76bcaba601
commit e3643e4933

View File

@ -1,8 +1,6 @@
/* $Id$ */
#if defined(WIN32) || defined(WIN64) || defined(__CYGWIN__)
#define WIN32
#else
#if !(defined(WIN32) || defined(WIN64) || defined(__CYGWIN__))
#define UNIX
#endif