newlib/winsup/mingw/mingwex/math/hypotf.c

5 lines
86 B
C

#include <math.h>
float hypotf (float x, float y)
{ return (float) _hypot (x, y);}