mirror of
https://github.com/upx/upx
synced 2025-10-05 19:20:23 +08:00
11 lines
184 B
C++
11 lines
184 B
C++
// Copyright (C) Markus Franz Xaver Johannes Oberhumer
|
|
|
|
#include <mutex>
|
|
|
|
static std::mutex lock_mutex;
|
|
|
|
int main() {
|
|
std::lock_guard<std::mutex> lock(lock_mutex);
|
|
return 0;
|
|
}
|