From 078a7486daec6ddffb5f206c43be125b559f1ca2 Mon Sep 17 00:00:00 2001 From: newpavlov Date: Wed, 21 Aug 2019 18:16:56 +0300 Subject: [PATCH] add __wasi_rights_t --- src/wasi.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/wasi.rs b/src/wasi.rs index a810c2ad..50621fd5 100644 --- a/src/wasi.rs +++ b/src/wasi.rs @@ -36,6 +36,8 @@ pub type blksize_t = c_long; pub type blkcnt_t = i64; pub type nfds_t = c_ulong; +pub type __wasi_rights_t = u64; + #[allow(missing_copy_implementations)] #[cfg_attr(feature = "extra_traits", derive(Debug))] pub enum FILE {}