zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

negxf2.zig (265B) - Raw


      1 const common = @import("./common.zig");
      2 
      3 pub const panic = common.panic;
      4 
      5 comptime {
      6     @export(&__negxf2, .{ .name = "__negxf2", .linkage = common.linkage, .visibility = common.visibility });
      7 }
      8 
      9 fn __negxf2(a: f80) callconv(.c) f80 {
     10     return common.fneg(a);
     11 }