forked from mirror/OpenTTD
(svn r10673) -Cleanup: some assorted style cleanups. Primarily type* var -> type *var.
This commit is contained in:
@@ -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 */
|
||||
|
Reference in New Issue
Block a user