| 143 | #include "SDL_thread.h" |
| 144 | |
| 145 | inline void Sleep(int millis) { |
| 146 | struct timeval tv; |
| 147 | tv.tv_sec = 0; |
| 148 | tv.tv_usec = millis * 1000; |
| 149 | select(0, NULL, NULL, NULL, &tv); |
| 150 | } |
| 151 | #endif |
| 152 | |
| 153 | #define NW_AGHBN_CANCEL 1 |
no outgoing calls
no test coverage detected