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

w_hypot.c « spu « machine « libm « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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);
}