mm(1): adds ioerr(), usage(), and oser() functions

This commit is contained in:
Emma Tebibyte 2024-08-22 00:22:05 -06:00
parent fbacfecce8
commit dd39aeff02
Signed by: emma
GPG Key ID: 06FA419A1698C270

View File

@ -20,9 +20,9 @@
use std::{ use std::{
env::args, env::args,
fs::File, fs::File,
io::{ stdin, stdout, stderr, BufWriter, Read, Write }, io::{ Error, BufWriter, Read, Write, stderr, stdin, stdout },
os::fd::{ AsRawFd, FromRawFd }, os::fd::{ AsRawFd, FromRawFd },
process::{ exit, ExitCode }, process::{ ExitCode, exit},
}; };
extern crate getopt; extern crate getopt;