xref: /openbsd-src/gnu/llvm/compiler-rt/lib/gwp_asan/tests/harness.cpp (revision 46035553bfdd96e63c94e32da0210227ec2e3cf1)
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