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

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

double log10(double x)
{
  return _log10(x);
}