[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / Modules / Inputs / thread-safety / a.h
blob879c038cf970ea4d7131b019d15990ffcedbe244
1 struct __attribute__((lockable)) mutex {
2 void lock() __attribute__((exclusive_lock_function));
3 void unlock() __attribute__((unlock_function));
4 };