fn hypotl(x: c_longdouble, y: c_longdouble) callconv(.c) c_longdouble
fn hypotl(x: c_longdouble, y: c_longdouble) callconv(.c) c_longdouble { return switch (@typeInfo(c_longdouble).float.bits) { 64 => std.c.hypot(x, y), else => math.hypot(x, y), }; }