1extern int foo(int, ...);
2int bar(void) {
3  long double l = 1.2345E6;
4  foo(0, l);
5  return 0;
6}
7