• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download

foo1(int x,int y,...)1 int foo1(int x, int y, ...) { return x + y + 1; }
foo2(int x,...)2 int foo2(int x, ...) { return x + 2; }
foo3(int x,int y)3 int foo3(int x, int y) { return x + y + 3; }
4 // GCC omits the ...: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111788
foo4(...)5 int foo4(...) { return 4; }
6