changeset 34121:fbfde63a7e82

Fix include condition. Don't explicitly list the sytems that need the windows.h header file. Only OS/2 doesn't need it.
author ib
date Mon, 17 Oct 2011 10:46:38 +0000
parents 5feea1437279
children 68d3b36b9dfc
files osdep/priority.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/osdep/priority.c	Sun Oct 16 11:48:05 2011 +0000
+++ b/osdep/priority.c	Mon Oct 17 10:46:38 2011 +0000
@@ -22,7 +22,7 @@
 
 #include "osdep.h"
 
-#if defined(__MINGW32__) || defined(__CYGWIN__) || defined(__WINE__)
+#ifndef __OS2__
 #include <windows.h>
 #endif