Sign in
cobalt
/
cobalt
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
musl
/
src
/
unistd
/
tcgetpgrp.c
blob: 50080c7e8e791e2b44174c5c166850a00be8af2f [
file
] [
log
] [
blame
]
Andrew Top
286dd78
2018-10-02 16:52:45 -0700
[
diff
] [
blame
]
1
#include
<unistd.h>
2
#include
<termios.h>
3
#include
<sys/ioctl.h>
4
5
pid_t
tcgetpgrp
(
int
fd
)
6
{
7
int
pgrp
;
8
if
(
ioctl
(
fd
,
TIOCGPGRP
,
&
pgrp
)
<
0
)
9
return
-
1
;
10
return
pgrp
;
11
}