Mercurial > sdl-ios-xcode
changeset 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 | 0bcae11eba14 |
children | db0bee1c5845 |
files | src/thread/generic/SDL_systhread_c.h |
diffstat | 1 files changed, 2 insertions(+), 0 deletions(-) [+] |
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