summaryrefslogtreecommitdiffstats
path: root/newlib/libm/machine/spu/sf_nextafter.c
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);
}