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

@@ -8,5 +8,5 @@ fn no_args() -> u32 {
}
fn main() {
assert_eq!(unsafe { __wasi_no_args() }, no_args());
assert_eq!(unsafe { wasi_common_no_args() }, no_args());
}