Sign in
mojo
/
mojo
/
de6c20aad64d53a7061c10e724e9924cfec679f6
/
.
/
fusl
/
src
/
unistd
/
tcgetpgrp.c
blob: 8e89ac922ea2f242c5922982b94f063e62c8c153 [
file
] [
log
] [
blame
]
#include
<unistd.h>
#include
<termios.h>
#include
<sys/ioctl.h>
pid_t
tcgetpgrp
(
int
fd
)
{
int
pgrp
;
if
(
ioctl
(
fd
,
TIOCGPGRP
,
&
pgrp
)
<
0
)
return
-
1
;
return
pgrp
;
}