Skip to content

Commit b54607f

Browse files
committed
Add missing preludes
1 parent 95446f4 commit b54607f

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

src/sgx.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
//! SGX C types definition
22
3+
use crate::prelude::*;
4+
35
pub type intmax_t = i64;
46
pub type uintmax_t = u64;
57

src/unix/linux_like/linux/gnu/b64/aarch64/ilp32.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
use crate::prelude::*;
12
use crate::pthread_mutex_t;
23

34
pub const __SIZEOF_PTHREAD_CONDATTR_T: usize = 4;

src/unix/linux_like/linux/gnu/b64/aarch64/lp64.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
use crate::prelude::*;
12
use crate::pthread_mutex_t;
23

34
pub const __SIZEOF_PTHREAD_CONDATTR_T: usize = 8;

0 commit comments

Comments
 (0)