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