xref: /llvm-project/compiler-rt/test/tysan/ignorelist.h (revision 1c0af8dced4a38967f3cb2d93fb6576535bc748b)
1 // Used as part of the ignorelist.c test
2 // tests if the "src:" ignorelist directive works
3 #include <stdio.h>
4 
5 void typeViolationMultiFile(void *value) {
6   printf("As long: %ld\n", *(long *)value);
7 }
8