Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
termios
tcgetsid.c
pretty
plain
permalink
blame
history
•
10 lines
•
144 B
1
#include <termios.h>
2
#include <sys/ioctl.h>
3
4
pid_t tcgetsid(int fd)
5
{
6
	int sid;
7
	if (ioctl(fd, TIOCGSID, &sid) < 0)
8
		return -1;
9
	return sid;
10
}