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

long int lrintf(float x)
{
    return _lrintf(x);
}