src/thread.h
branchgamebalance
changeset 9895 7bd07f43b0e3
parent 5726 8f399788f6c9
child 6307 f40e88cff863
--- a/src/thread.h	Mon Mar 19 09:33:17 2007 +0000
+++ b/src/thread.h	Mon Mar 19 12:38:16 2007 +0000
@@ -3,12 +3,12 @@
 #ifndef THREAD_H
 #define THREAD_H
 
-typedef struct OTTDThread OTTDThread;
+struct OTTDThread;
 
 typedef void* (*OTTDThreadFunc)(void*);
 
 OTTDThread* OTTDCreateThread(OTTDThreadFunc, void*);
 void*       OTTDJoinThread(OTTDThread*);
-void        OTTDExitThread(void);
+void        OTTDExitThread();
 
 #endif /* THREAD_H */