diff options
author | Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de> | 2005-05-25 12:14:29 +0000 |
---|---|---|
committer | Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de> | 2005-05-25 12:14:29 +0000 |
commit | 1cb18a4bad565d1f783a4cefb3ed467699051068 (patch) | |
tree | 56d3657cb45497c1cafd063129e3046b62a27561 /hw/xwin/winmultiwindowwm.c | |
parent | 62343f5162066f19ca6e62d1c85a4a40d45b3295 (diff) |
Workaround bug in pthread.h
Diffstat (limited to 'hw/xwin/winmultiwindowwm.c')
-rw-r--r-- | hw/xwin/winmultiwindowwm.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/hw/xwin/winmultiwindowwm.c b/hw/xwin/winmultiwindowwm.c index 032835397..4fbedd00a 100644 --- a/hw/xwin/winmultiwindowwm.c +++ b/hw/xwin/winmultiwindowwm.c @@ -38,7 +38,9 @@ #endif #include <fcntl.h> #include <setjmp.h> +#define HANDLE void * #include <pthread.h> +#undef HANDLE #include <X11/X.h> #include <X11/Xatom.h> #include <X11/Xlib.h> |