mc_sgx_tstdc_sys/
lib.rs

1// Copyright (c) 2022-2024 The MobileCoin Foundation
2
3#![doc = include_str!("../README.md")]
4#![no_std]
5#![allow(non_camel_case_types, non_snake_case, non_upper_case_globals)]
6
7use mc_sgx_core_sys_types::sgx_status_t;
8use mc_sgx_tstdc_sys_types::{
9    sgx_spinlock_t, sgx_thread_cond_t, sgx_thread_condattr_t, sgx_thread_mutex_t,
10    sgx_thread_mutexattr_t, sgx_thread_rwlock_t, sgx_thread_rwlockattr_t, sgx_thread_t,
11};
12
13include!(concat!(env!("OUT_DIR"), "/bindings.rs"));