Reexport ctermid, cuserid

This commit is contained in:
Peter Limkilde Svendsen
2025-02-01 18:07:23 +01:00
parent 5116c80d2f
commit 99e0948e0c
+5
View File
@@ -26,6 +26,11 @@ use alloc::collections::LinkedList;
pub use self::{brk::*, getopt::*, getpass::getpass, pathconf::*, sysconf::*};
// Inclusion of ctermid() prototype marked as obsolescent since Issue 7, cf.
// <https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html>.
// cuserid() marked legacy in Issue 5.
pub use crate::header::stdio::{ctermid, cuserid};
use super::errno::{E2BIG, ENOMEM};
mod brk;