Sign in
cobalt
/
cobalt
/
0585facbd3129ea3f3d3c63f9539aacbad3130c8
/
.
/
third_party
/
musl
/
src
/
unistd
/
tcsetpgrp.c
blob: 67c38cb45c9a5eb35eb1e8c4b843a8d809a24171 [
file
] [
log
] [
blame
]
#include
<unistd.h>
#include
<termios.h>
#include
<sys/ioctl.h>
int
tcsetpgrp
(
int
fd
,
pid_t
pgrp
)
{
int
pgrp_int
=
pgrp
;
return
ioctl
(
fd
,
TIOCSPGRP
,
&
pgrp_int
);
}