Bug 497723 - forgot to restore callgrind output cleanup
[valgrind.git] / VEX / switchback / test_hello.c
blobd4318d0281026ae289b33b82eb569e81fb5cc159
3 static void bar ( void*(*service)(int,int) )
5 int i;
6 for (i = 0; i < 100000; i++) ;
7 service(1, 'h');
8 service(1, 'e');
9 service(1, 'l');
10 service(1, 'l');
11 service(1, 'o');
12 service(1, '\n');
15 void entry ( void*(*service)(int,int) )
17 bar(service);
18 service(0,0);