4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-16 11:31:00 +08:00

5 lines
86 B
C
Raw Normal View History

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