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

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

float nextafterf(float x, float y)
{
  return _nextafterf(x, y);
}