mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2024-11-23 09:59:42 +00:00
8 lines
152 B
C++
8 lines
152 B
C++
#include <atomic>
|
|
int main(int argc, char* argv[])
|
|
{
|
|
std::atomic_flag f = ATOMIC_FLAG_INIT;
|
|
std::atomic<bool> g (false);
|
|
return 0;
|
|
}
|