| 156 | /* Wait on the condition variable forever */ |
| 157 | extern "C" |
| 158 | int |
| 159 | SDL_CondWait(SDL_cond * cond, SDL_mutex * mutex) |
| 160 | { |
| 161 | return SDL_CondWaitTimeout(cond, mutex, SDL_MUTEX_MAXWAIT); |
| 162 | } |
| 163 | |
| 164 | /* vi: set ts=4 sw=4 expandtab: */ |
nothing calls this directly
no test coverage detected