C++程序  |  9行  |  126 B

extern void foobar (void);
int
main (int argc, char **argv)
{
  if (__builtin_constant_p (argc))
    foobar ();
  return 0;
}