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

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

double remquo(double x, double y, int *quo)
{
    return _remquo(x, y, quo);
}