Skip to content

Commit

Permalink
Auto merge of #3517 - shuoer86:main, r=JohnTitor
Browse files Browse the repository at this point in the history
fix typo

fix a typo
  • Loading branch information
bors committed Jan 6, 2024
2 parents 928f2d6 + 22a41ed commit 5594447
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/teeos/mod.rs
Expand Up @@ -62,7 +62,7 @@ pub struct _CLongDouble(pub u128);

// long double in C means A float point value, which has 128bit length.
// but some bit maybe not used, so the really length of long double could be 80(x86) or 128(power pc/IEEE)
// this is different from f128(not stable and not inculded default) in Rust, so we use u128 for FFI(Rust to C).
// this is different from f128(not stable and not included default) in Rust, so we use u128 for FFI(Rust to C).
// this is unstable and will couse to memfault/data abort.
pub type c_longdouble = _CLongDouble;

Expand Down

0 comments on commit 5594447

Please sign in to comment.