1  double pow(double x, double y);
       2  void foo( double x ) {
       3     int j = (int) ((pow(x, 2)) < 0.0 ? (pow(x, 2))-0.5 : (pow(x, 2))+0.5);
       4  }
       1  double pow(double x, double y);
       2  void foo( double x ) {
       3     int j = (int) ((pow(x, 2)) < 0.0 ? (pow(x, 2))-0.5 : (pow(x, 2))+0.5);
       4  }