1 // Copyright (C) 2000 Free Software Foundation 2 3 // by Alexandre Oliva <oliva@lsd.ic.unicamp.br> 4 // simplified from libio/floatconv.c 5 6 static const double bar[] = { 0 }; 7 int j; 8 9 double foo()10 foo () 11 { 12 return bar[j]; 13 } 14