1 extern void foobar (void); 2 int 3 main (int argc, char **argv) 4 { 5 if (!__builtin_constant_p (argc)) 6 foobar (); 7 return 0; 8 } 9