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

nextafter.h « headers « spu « machine « libm « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0dfbb8285c145ab1e48c9ceb6586072e7bacdf45 (plain)
1
2
3
4
5
6
#include "headers/nextafterd2.h"

static __inline double _nextafter(double x, double y)
{
  return spu_extract(_nextafterd2(spu_promote(x, 0), spu_promote(y, 0)), 0);
}