mirror of
https://github.com/Relintai/pandemonium_engine_minimal.git
synced 2024-11-10 20:12:10 +01:00
12 lines
191 B
C++
12 lines
191 B
C++
#ifndef THREAD_POSIX_H
|
|
#define THREAD_POSIX_H
|
|
|
|
/* thread_posix.h */
|
|
|
|
|
|
#if !defined(NO_THREADS)
|
|
void init_thread_posix();
|
|
#endif
|
|
|
|
#endif
|