#include <math.h>
#include "headers/scalbnf.h"
float scalbnf(float x, int exp)
{
return _scalbnf(x, exp);
}