From e4bc87f97d0a45000bd3bd7631ce50339202443f Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Fri, 19 Dec 2025 13:27:00 -0700 Subject: [PATCH] Update tcgetsid link --- src/header/termios/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/header/termios/mod.rs b/src/header/termios/mod.rs index 1a5a3fc704..93afa8b985 100644 --- a/src/header/termios/mod.rs +++ b/src/header/termios/mod.rs @@ -85,7 +85,7 @@ pub unsafe extern "C" fn tcsetattr(fd: c_int, act: c_int, value: *const termios) sys_ioctl::ioctl(fd, sys_ioctl::TCSETS + act as c_ulong, value as *mut c_void) } -/// See . +/// See . #[unsafe(no_mangle)] pub unsafe extern "C" fn tcgetsid(fd: c_int) -> pid_t { let mut sid = 0;