11 lines
280 B
C
11 lines
280 B
C
// File: crn_threading.h
|
|
// This software is in the public domain. Please see license.txt.
|
|
|
|
#if CRNLIB_USE_WIN32_API
|
|
#include "crn_threading_win32.h"
|
|
#elif CRNLIB_USE_PTHREADS_API
|
|
#include "crn_threading_pthreads.h"
|
|
#else
|
|
#include "crn_threading_null.h"
|
|
#endif
|