net7/branches/linux-port/Threads/Thread.h
2014-05-11 16:54:16 -04:00

12 lines
158 B
C

#ifndef _Thread_
#define _Thread_
#include <errno.h>
#ifdef WIN32
#include "Win32/Thread.h"
#else
#include "Posix/Thread.h"
#endif
#endif // !_Thread_