Welcome to mirror list, hosted at ThFree Co, Russian Federation.

s_log1p.c « spu « machine « libm « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 70ca375913a9c0b1bef8515312901b0d12b25c7d (plain)
1
2
3
4
5
6
7
#include <math.h>
#include "headers/log1p.h"

double log1p(double x)
{
  return _log1p(x);
}