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