8 lines
95 B
C
8 lines
95 B
C
|
#include <math.h>
|
||
|
#include "headers/round.h"
|
||
|
|
||
|
double round(double x)
|
||
|
{
|
||
|
return _round(x);
|
||
|
}
|