(svn r10673) -Cleanup: some assorted style cleanups. Primarily type* var -> type *var.

This commit is contained in:
rubidium
2007-07-24 17:01:23 +00:00
parent 0d9a51de6d
commit 5d3f058b65
22 changed files with 70 additions and 70 deletions

View File

@@ -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 */