fix net support for user net app

This commit is contained in:
Yu Chen 2023-02-08 00:04:50 +08:00
parent dd4678ff0e
commit 02be18684d
3 changed files with 9 additions and 1 deletions

View file

@ -12,6 +12,7 @@ mod file;
mod task;
mod sync;
mod io;
mod net;
extern crate alloc;
#[macro_use]
@ -24,6 +25,7 @@ pub use file::*;
pub use task::*;
pub use sync::*;
pub use io::*;
pub use net::*;
const USER_HEAP_SIZE: usize = 32768;