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