Added UResult for hostid

This commit is contained in:
353fc443
2021-07-02 12:03:14 +00:00
parent 330db2eb3e
commit f66f10c4ed
+4 -2
View File
@@ -12,6 +12,7 @@ extern crate uucore;
use clap::{crate_version, App};
use libc::c_long;
use uucore::error::UResult;
static SYNTAX: &str = "[options]";
@@ -20,10 +21,11 @@ extern "C" {
pub fn gethostid() -> c_long;
}
pub fn uumain(args: impl uucore::Args) -> i32 {
#[uucore_procs::gen_uumain]
pub fn uumain(args: impl uucore::Args) -> UResult<()> {
uu_app().get_matches_from(args);
hostid();
0
Ok(())
}
pub fn uu_app() -> App<'static, 'static> {