comparison src/thread/os2/SDL_syscond.c @ 1338:604d73db6802

Removed uses of stdlib.h and string.h
author Sam Lantinga <slouken@libsdl.org>
date Tue, 07 Feb 2006 09:29:18 +0000
parents 3692456e7b0f
children c71e05b4dc2e
comparison
equal deleted inserted replaced
1337:c687f06c7473 1338:604d73db6802
24 /* 24 /*
25 This implementation borrows heavily from the BeOS condition variable 25 This implementation borrows heavily from the BeOS condition variable
26 implementation, written by Christopher Tate and Owen Smith. Thanks! 26 implementation, written by Christopher Tate and Owen Smith. Thanks!
27 */ 27 */
28 28
29 #include <stdio.h> 29 #include "SDL_stdlib.h"
30 #include <stdlib.h>
31
32 #include "SDL_error.h" 30 #include "SDL_error.h"
33 #include "SDL_thread.h" 31 #include "SDL_thread.h"
34 32
35 struct SDL_cond 33 struct SDL_cond
36 { 34 {