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