pub fn roundl(x: c_longdouble) callconv(.c) c_longdouble
pub fn roundl(x: c_longdouble) callconv(.c) c_longdouble { switch (@typeInfo(c_longdouble).float.bits) { 64 => return round(x), 80 => return __roundx(x), 128 => return roundq(x), else => @compileError("unreachable"), } }