blob: 054dd5405e1be87d55af3a9b60451f5ae6e363f8 [file] [log] [blame]
#pragma clang system_header
namespace std {
struct mutex {
void lock();
void unlock();
};
template <typename T> struct lock_guard {
lock_guard(std::mutex &);
~lock_guard();
};
} // namespace std