Skip to content

Commit 29a3725

Browse files
committed
Fix style.
1 parent 17de706 commit 29a3725

File tree

1 file changed

+5
-5
lines changed
  • src/unix/bsd/netbsdlike/openbsd

1 file changed

+5
-5
lines changed

src/unix/bsd/netbsdlike/openbsd/mod.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,11 @@ pub type Elf64_Sxword = i64;
3636
pub type Elf64_Word = u32;
3737
pub type Elf64_Xword = u64;
3838

39+
// search.h
40+
41+
pub type ENTRY = entry;
42+
pub type ACTION = ::c_uint;
43+
3944
// sys/exec_elf.h - Legal values for p_type (segment type).
4045
pub const PT_NULL: u32 = 0;
4146
pub const PT_LOAD: u32 = 1;
@@ -60,11 +65,6 @@ pub const PF_R: u32 = 0x4;
6065
pub const PF_MASKOS: u32 = 0x0ff00000;
6166
pub const PF_MASKPROC: u32 = 0xf0000000;
6267

63-
// search.h
64-
65-
pub type ENTRY = entry;
66-
pub type ACTION = ::c_uint;
67-
6868
cfg_if! {
6969
if #[cfg(target_pointer_width = "64")] {
7070
type Elf_Addr = Elf64_Addr;

0 commit comments

Comments
 (0)