mirror of
https://github.com/LMMS/lmms.git
synced 2026-01-24 14:28:21 -05:00
10 lines
225 B
C
10 lines
225 B
C
#include <condition_variable>
|
|
#include <mutex>
|
|
#include <thread>
|
|
|
|
#if defined(__MINGW32__) && !defined(_GLIBCXX_HAS_GTHREADS)
|
|
# include <mingw.condition_variable.h>
|
|
# include <mingw.mutex.h>
|
|
# include <mingw.thread.h>
|
|
#endif
|