Numworks Epsilon  1.4.1
Graphing Calculator Operating System
nearbyint.c
Go to the documentation of this file.
1 #include <math.h>
2 
3 // See nearbyintf.c for comments
4 
5 #undef nearbyint
6 
7 double nearbyint(double x) {
8  return round(x);
9 }
#define round(x)
Definition: math.h:192
double nearbyint(double x)
Definition: nearbyint.c:7