6 lines
84 B
C
6 lines
84 B
C
__attribute__((always_inline)) inline double trunc(double x)
|
|
{
|
|
return floor(x);
|
|
}
|
|
|