summaryrefslogtreecommitdiff
path: root/thread.h
diff options
context:
space:
mode:
Diffstat (limited to 'thread.h')
-rw-r--r--thread.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/thread.h b/thread.h
deleted file mode 100644
index 900b87849..000000000
--- a/thread.h
+++ /dev/null
@@ -1,14 +0,0 @@
-/* $Id$ */
-
-#ifndef THREAD_H
-#define THREAD_H
-
-typedef struct OTTDThread OTTDThread;
-
-typedef void* (*OTTDThreadFunc)(void*);
-
-OTTDThread* OTTDCreateThread(OTTDThreadFunc, void*);
-void* OTTDJoinThread(OTTDThread*);
-void OTTDExitThread(void);
-
-#endif /* THREAD_H */