8 lines
94 B
C
Raw Normal View History

#include <math.h>
#include "headers/log1pf.h"
float log1pf(float x)
{
return _log1pf(x);
}