Rename C prefix from __wasi to wasi_common_

This commit is contained in:
Jakub Konka
2019-05-15 20:45:00 +02:00
committed by Dan Gohman
parent 52eda1498a
commit 5aa598520c
6 changed files with 6 additions and 6 deletions

View File

@@ -13,7 +13,7 @@ fn main() {
let given = unsafe {
let given = Box::new(2);
let raw = Box::into_raw(given);
__wasi_mut_args(raw);
wasi_common_mut_args(raw);
Box::from_raw(raw)
};
assert_eq!(*given, *expected);