libcruft-util/test/thread/mutex.cpp
Danny Robson 01094611eb thread: add minimal thread primitives for win32
This allows us to get around the lack of these types under MinGW
2019-06-22 15:46:34 +10:00

12 lines
175 B
C++

#include "tap.hpp"
#include "thread/mutex.hpp"
int main ()
{
cruft::TAP::logger tap;
cruft::thread::mutex a;
cruft::thread::mutex b;
return tap.status ();
}