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

hypotf.c « math « mingwex « mingw « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ee67a45dce0e807dae2fa7835816f675c9d8a45b (plain)
1
2
3
4
#include <math.h>

float hypotf (float x, float y)
  { return (float) _hypot (x, y);}