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

float expf(float x)
{
    return _expf(x);
}