ref: 37d36fdd7f441aa184c4051d02e50e9e770f20f8
dir: /sys/man/2/hypot/
.TH HYPOT 2 .SH NAME hypot \- Euclidean distance .SH SYNOPSIS .B #include <u.h> .br .B #include <libc.h> .PP .nf .B double hypot(double x, double y) .fi .SH DESCRIPTION .I Hypot returns .EX sqrt(x*x + y*y) .EE taking precautions against unwarranted overflows. .SH SOURCE .B /sys/src/libc/port/hypot.c