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