mirror of
https://github.com/therealKyp/Earth-and-Beyond-server
synced 2026-08-13 22:23:03 -04:00
12 lines
158 B
C
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_
|