summaryrefslogtreecommitdiff
path: root/src/thread.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-07-24 17:01:23 +0000
committerrubidium <rubidium@openttd.org>2007-07-24 17:01:23 +0000
commit59d33d0f7ce8210b1fdabc733fd8dbc7a1f18d4b (patch)
tree08ce082e1855582f3c9d1c228a0928e71c054c80 /src/thread.h
parent9c9fc1a79ef08d1c3822bc7a4a1373d84dbfa70b (diff)
downloadopenttd-59d33d0f7ce8210b1fdabc733fd8dbc7a1f18d4b.tar.xz
(svn r10673) -Cleanup: some assorted style cleanups. Primarily type* var -> type *var.
Diffstat (limited to 'src/thread.h')
-rw-r--r--src/thread.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/thread.h b/src/thread.h
index c359cbca4..5ec169b0c 100644
--- a/src/thread.h
+++ b/src/thread.h
@@ -7,10 +7,10 @@
struct OTTDThread;
-typedef void* (*OTTDThreadFunc)(void*);
+typedef void * (*OTTDThreadFunc)(void*);
-OTTDThread* OTTDCreateThread(OTTDThreadFunc, void*);
-void* OTTDJoinThread(OTTDThread*);
+OTTDThread *OTTDCreateThread(OTTDThreadFunc, void*);
+void *OTTDJoinThread(OTTDThread*);
void OTTDExitThread();
#endif /* THREAD_H */