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

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

float ldexpf(float x, int exp)
{
    return _ldexpf(x, exp);
}