Skip to content

Commit

Permalink
Fixes fmt issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
psumbera committed Nov 25, 2019
1 parent 3c1b0ee commit 412dd4e
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions src/unix/solarish/mod.rs
Expand Up @@ -2060,11 +2060,17 @@ extern "C" {
advice: ::c_int,
) -> ::c_int;

pub fn shmat(shmid: ::c_int, shmaddr: *const ::c_void,
shmflg: ::c_int) -> *mut ::c_void;

pub fn shmctl(shmid: ::c_int, cmd: ::c_int,
buf: *mut ::shmid_ds) -> ::c_int;
pub fn shmat(
shmid: ::c_int,
shmaddr: *const ::c_void,
shmflg: ::c_int,
) -> *mut ::c_void;

pub fn shmctl(
shmid: ::c_int,
cmd: ::c_int,
buf: *mut ::shmid_ds,
) -> ::c_int;

pub fn shmdt(shmaddr: *const ::c_void) -> ::c_int;

Expand Down

0 comments on commit 412dd4e

Please sign in to comment.