1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-08-01 13:37:48 +00:00

Added UResult for hostid

This commit is contained in:
353fc443 2021-07-02 12:03:14 +00:00
parent 330db2eb3e
commit f66f10c4ed
No known key found for this signature in database
GPG key ID: D58B14ED3D42A937

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> {