summaryrefslogtreecommitdiffstats
path: root/newlib/libm/machine/spu/w_hypot.c
blob: 93db031b039f3bb84b59cb4b5a5a66f40c97f786 (plain)
1
2
3
4
5
6
7
#include <math.h>
#include "headers/hypot.h"

double hypot(double x, double y)
{
  return _hypot(x, y);
}