(raw: RetReg<R0>)
| 919 | /// `c_int` on success. |
| 920 | #[inline] |
| 921 | pub(super) fn ret_c_int(raw: RetReg<R0>) -> io::Result<c::c_int> { |
| 922 | try_decode_c_int(raw) |
| 923 | } |
| 924 | |
| 925 | /// Convert a `usize` returned from a syscall that effectively returns a |
| 926 | /// `c_uint` on success. |
no test coverage detected