xref: /openbsd-src/gnu/llvm/compiler-rt/lib/gwp_asan/tests/harness.cpp (revision b99ef4df7fac99f3475b694d6cd4990521c99ae6)
1 #include "harness.h"
2 
3 namespace gwp_asan {
4 namespace test {
5 bool OnlyOnce() {
6   static int x = 0;
7   return !x++;
8 }
9 } // namespace test
10 } // namespace gwp_asan
11