Sign in
mojo
/
mojo-tools
/
c8bbaed8e0650d920840b6e79d3cc4c4f040f2e2
/
.
/
fusl
/
src
/
unistd
/
tcsetpgrp.c
blob: 67c38cb45c9a5eb35eb1e8c4b843a8d809a24171 [
file
]
#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
);
}