mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-08 08:24:49 +01:00
13 lines
531 B
Zig
13 lines
531 B
Zig
const std = @import("std");
|
|
const builtin = @import("builtin");
|
|
const common = @import("common.zig");
|
|
const bigIntFromFloat = @import("int_from_float.zig").bigIntFromFloat;
|
|
|
|
comptime {
|
|
@export(&__fixxfei, .{ .name = "__fixxfei", .linkage = common.linkage, .visibility = common.visibility });
|
|
}
|
|
|
|
pub fn __fixxfei(r: [*]u8, bits: usize, a: f80) callconv(.c) void {
|
|
const byte_size = std.zig.target.intByteSize(&builtin.target, @intCast(bits));
|
|
return bigIntFromFloat(.signed, @ptrCast(@alignCast(r[0..byte_size])), a);
|
|
}
|