ref: 549a6745e3b6a69c9a14deb5090b8fa1ad444f06
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