Sign in
android
/
platform
/
external
/
musl
/
3da2b5cceae98f5098e62e7865fe6433c1e82775
/
.
/
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
);
}