diff src/thread/generic/SDL_systhread_c.h @ 128:8f7b9d6be8cc

Avoid a compiler warning when configured with --disable-threads
author Sam Lantinga <slouken@libsdl.org>
date Tue, 31 Jul 2001 00:32:27 +0000
parents 74212992fb08
children e8157fcb3114
line wrap: on
line diff
--- a/src/thread/generic/SDL_systhread_c.h	Tue Jul 31 00:26:32 2001 +0000
+++ b/src/thread/generic/SDL_systhread_c.h	Tue Jul 31 00:32:27 2001 +0000
@@ -23,4 +23,6 @@
 /* Stub until we implement threads on this platform */
 typedef int SYS_ThreadHandle;
 
+#ifndef DISABLE_THREADS
 #define DISABLE_THREADS
+#endif