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

@@ -12,7 +12,7 @@ fn main() {
let expected = ref_args(a.as_ref());
let given = unsafe {
let raw = Box::into_raw(a);
let res = __wasi_ref_args(raw);
let res = wasi_common_ref_args(raw);
Box::from_raw(raw);
res
};