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

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

double scalbn(double x, int exp)
{
    return _scalbn(x, exp);
}