#include <math.h>
#include "headers/lrint.h"

long int lrint(double x)
{
    return _lrint(x);
}