Blame view

build4/epsilon-master/liba/src/nearbyint.c 121 Bytes
6663b6c9   adorian   projet complet av...
1
2
3
4
5
6
7
8
9
  #include <math.h>
  
  // See nearbyintf.c for comments
  
  #undef nearbyint
  
  double nearbyint(double x) {
    return round(x);
  }