Skip to content

Commit

Permalink
Add c_float and c_double
Browse files Browse the repository at this point in the history
  • Loading branch information
randomPoison committed Oct 21, 2024
1 parent ea1a045 commit b348da8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/trusty.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ pub type c_int16_t = i16;
pub type c_int32_t = i32;
pub type c_int64_t = i64;

pub type c_float = f32;
pub type c_double = f64;

pub type time_t = c_long;

pub type clockid_t = c_int;
Expand Down

0 comments on commit b348da8

Please sign in to comment.