summaryrefslogtreecommitdiffstats
path: root/winsup/mingw/mingwex/math/hypotf.c
blob: ee67a45dce0e807dae2fa7835816f675c9d8a45b (plain)
1
2
3
4
#include <math.h>

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