Skip to content

Commit 3a10e23

Browse files
committed
Fixed import
1 parent 08e34d7 commit 3a10e23

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/unix/bsd/netbsdlike/netbsd/aarch64.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use self::*;
1+
use PT_FIRSTMACH;
22

33
pub type c_long = i64;
44
pub type c_ulong = u64;

src/unix/bsd/netbsdlike/netbsd/arm.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use self::*;
1+
use PT_FIRSTMACH;
22

33
pub type c_long = i32;
44
pub type c_ulong = u32;

src/unix/bsd/netbsdlike/netbsd/powerpc.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use self::*;
1+
use PT_FIRSTMACH;
22

33
pub type c_long = i32;
44
pub type c_ulong = u32;

src/unix/bsd/netbsdlike/netbsd/x86_64.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use self::*;
1+
use PT_FIRSTMACH;
22

33
pub type c_long = i64;
44
pub type c_ulong = u64;

0 commit comments

Comments
 (0)