(svn r10628) -Fix (r10606,FS#1055): Revert r10606 and fix the plural problem another way.
/* $Id$ */
/** @file thread.h */
#ifndef THREAD_H
#define THREAD_H
struct OTTDThread;
typedef void* (*OTTDThreadFunc)(void*);
OTTDThread* OTTDCreateThread(OTTDThreadFunc, void*);
void* OTTDJoinThread(OTTDThread*);
void OTTDExitThread();
#endif /* THREAD_H */