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

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

double nextafter(double x, double y)
{
  return _nextafter(x, y);
}