8 lines
94 B
C
8 lines
94 B
C
|
#include <math.h>
|
||
|
#include "headers/log1pf.h"
|
||
|
|
||
|
float log1pf(float x)
|
||
|
{
|
||
|
return _log1pf(x);
|
||
|
}
|