yac
/
yacexits
Archived
3
0
Fork 0

removed references to error module

This commit is contained in:
Emma Tebibyte 2023-03-30 23:41:40 -04:00
parent dcd4b76fbc
commit 61884116e8
Signed by: emma
GPG Key ID: 6D661C738815E7DD
1 changed files with 0 additions and 3 deletions

View File

@ -72,11 +72,8 @@ extern crate core;
#[cfg(feature = "entry")]
mod entry;
#[cfg(feature = "errors")]
mod errors;
pub use entry::Args;
pub use errors::*;
pub fn exit(code: u32) -> ! {
unsafe { libc::exit(code as i32 as libc::c_int); }