5 lines
86 B
C
Raw Normal View History

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