projects
/
oweals
/
musl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
add mips n32 port (ILP32 ABI for mips64)
[oweals/musl.git]
/
src
/
unistd
/
tcgetpgrp.c
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
}