Home | History | Annotate | Download | only in tests
      1 #include "valgrind.h"
      2 
      3 void baz()
      4 {
      5    VALGRIND_PRINTF_BACKTRACE("hello <> %s%%s world\n","<&>");
      6 }
      7 
      8 void bar()
      9 {
     10    baz();
     11 }
     12 
     13 void foo()
     14 {
     15      bar();
     16 }
     17 
     18 int main()
     19 {
     20    foo();
     21 
     22    return 0;
     23 }
     24 
     25