updated std.c.{freebsd, netbsd} to usingnamespace
2 files changed, 2 insertions(+), 2 deletions(-)
std
c
std/c/freebsd.zig+1-1
| ... | ... | @@ -1,5 +1,5 @@ |
| 1 | 1 | const std = @import("../std.zig"); |
| 2 | | use std.c; |
| 2 | usingnamespace std.c; |
| 3 | 3 | |
| 4 | 4 | extern "c" fn __error() *c_int; |
| 5 | 5 | pub const _errno = __error; |
std/c/netbsd.zig+1-1
| ... | ... | @@ -1,5 +1,5 @@ |
| 1 | 1 | const std = @import("../std.zig"); |
| 2 | | use std.c; |
| 2 | usingnamespace std.c; |
| 3 | 3 | |
| 4 | 4 | extern "c" fn __errno() *c_int; |
| 5 | 5 | pub const _errno = __errno; |