From 6987fc09e9366f82e38b24fea2059d87ee2d1aa6 Mon Sep 17 00:00:00 2001 From: Jeong YunWon Date: Sun, 5 May 2024 14:19:20 +0900 Subject: [PATCH] wasi-libc comment about `libc.a` restriction --- src/wasi.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/wasi.rs b/src/wasi.rs index 87e1e72891840..f0155e74442ad 100644 --- a/src/wasi.rs +++ b/src/wasi.rs @@ -1,3 +1,6 @@ +// [wasi-libc](https://github.com/WebAssembly/wasi-libc) definitions. +// `wasi-libc` project provides multiple libraries including emulated features, but we list only basic features with `libc.a` here. + use super::{Send, Sync}; pub use ffi::c_void;