pub fn fminl(x: c_longdouble, y: c_longdouble) callconv(.c) c_longdouble
pub fn fminl(x: c_longdouble, y: c_longdouble) callconv(.c) c_longdouble { switch (@typeInfo(c_longdouble).float.bits) { 64 => return fmin(x, y), 80 => return __fminx(x, y), 128 => return fminq(x, y), else => @compileError("unreachable"), } }