zig

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

commit c60daa255f447a603af2b33b13c1188dd8fccc94 (tree)
parent 2fa9cf51ffc6c4be4f06c46616e4771ac05ba599
Author: Luna <git@l4.pm>
Date:   Thu,  2 Apr 2020 17:37:29 -0300

Replace C types in declarations

Diffstat:
Mlib/std/os/bits/linux.zig | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lib/std/os/bits/linux.zig b/lib/std/os/bits/linux.zig @@ -1710,8 +1710,8 @@ pub const SIOCGIFINDEX = 0x8933; pub const IFNAMESIZE = 16; pub const ifmap = extern struct { - mem_start: c_ulong, - mem_end: c_ulong, + mem_start: u32, + mem_end: u32, base_addr: u16, irq: u8, dma: u8, @@ -1734,6 +1734,6 @@ pub const ifreq = extern struct { ifru_map: ifmap, ifru_slave: [IFNAMESIZE]u8, ifru_newname: [IFNAMESIZE]u8, - ifru_data: [*c]u8, + ifru_data: ?[*]u8, }, };