round function

int round(
  1. double x
)

Implementation

int round(double x) {
    return x.round();
}