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

float truncf(float x)
{
    return _truncf(x);
}