6_2_5_01_void_func_no_value.c (86B)
1 void f(int* p) { *p = 42; } 2 int test_main(void) { 3 int x = 0; 4 f(&x); 5 return x; 6 }