updated std.c.{freebsd, netbsd} to usingnamespace

This commit is contained in:
emekoi 2019-06-05 14:54:24 -05:00 committed by Andrew Kelley
parent fdddd13106
commit ddfab40e30
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
const std = @import("../std.zig");
use std.c;
usingnamespace std.c;
extern "c" fn __error() *c_int;
pub const _errno = __error;

View File

@ -1,5 +1,5 @@
const std = @import("../std.zig");
use std.c;
usingnamespace std.c;
extern "c" fn __errno() *c_int;
pub const _errno = __errno;