summaryrefslogtreecommitdiff
path: root/thread.h
diff options
context:
space:
mode:
Diffstat (limited to 'thread.h')
-rw-r--r--thread.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/thread.h b/thread.h
index 66e0ceea3..98f4f5cee 100644
--- a/thread.h
+++ b/thread.h
@@ -3,11 +3,11 @@
#ifndef THREAD_H
#define THREAD_H
-typedef struct Thread Thread;
+typedef struct OTTDThread OTTDThread;
-typedef void* (*ThreadFunc)(void*);
+typedef void* (*OTTDThreadFunc)(void*);
-Thread* OTTDCreateThread(ThreadFunc, void*);
-void* OTTDJoinThread(Thread*);
+OTTDThread* OTTDCreateThread(OTTDThreadFunc, void*);
+void* OTTDJoinThread(OTTDThread*);
#endif /* THREAD_H */