libc/newlib/libm/machine/spu/sf_log1p.c

8 lines
94 B
C

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