Sign in
cobalt
/
cobalt
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
musl
/
src
/
termios
/
tcgetsid.c
blob: 1053fd64724790adce5644375a7a1cec6e97df96 [
file
] [
log
] [
blame
]
#include
<termios.h>
#include
<sys/ioctl.h>
pid_t
tcgetsid
(
int
fd
)
{
int
sid
;
if
(
ioctl
(
fd
,
TIOCGSID
,
&
sid
)
<
0
)
return
-
1
;
return
sid
;
}