wasi-common no longer contains code derived from cloudabi-utils

the original C implementation was derived directly from cloudabi-utils.
that implementation is no longer in tree.

acfoltzer's initial Rust implementation included a path_open function
that was ported from cloudabi-utils. this rewrite of wasi-common has
completely delegated all path lookup functionality to cap-std (in the
cap-std-sync impls), and cap-std itself has a completely re-designed
method of path resolution.
This commit is contained in:
Pat Hickey
2021-01-29 13:28:13 -08:00
parent d5fdd835ab
commit d3ba69d865
2 changed files with 0 additions and 28 deletions

View File

@@ -66,7 +66,3 @@ Now, you should be able to run the integration testsuite by running `cargo test`
cargo test --features test-programs/test_programs --package test-programs
```
## Third-Party Code
Significant parts of our hostcall implementations are derived from the C implementations in
`cloudabi-utils`. See [LICENSE.cloudabi-utils](LICENSE.cloudabi-utils) for license information.