android_mt6572_jiabo/external/valgrind/VEX/switchback/test_hello.c
2025-09-05 16:56:03 +08:00

20 lines
286 B
C

static void bar ( void*(*service)(int,int) )
{
int i;
for (i = 0; i < 100000; i++) ;
service(1, 'h');
service(1, 'e');
service(1, 'l');
service(1, 'l');
service(1, 'o');
service(1, '\n');
}
void entry ( void*(*service)(int,int) )
{
bar(service);
service(0,0);
}