0180-incomplete.c (96B)
1 struct dummy; 2 3 void * 4 fun(struct dummy p[]) 5 { 6 return p; 7 } 8 9 int 10 main() 11 { 12 return fun(0) != 0; 13 }