summaryrefslogtreecommitdiff
path: root/src/unistd/ctermid.c
blob: 21b44ec8602206c676f94e8394f10a8bf60ff67c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <fcntl.h>
#include <unistd.h>
#include <limits.h>

char *ctermid(char *s)
{
	static char *s2;
	int fd;
	if (!s) {
		if (!s2) s2 = malloc(L_ctermid);
		s = s2;
	}
	fd = open("/dev/tty", O_WRONLY | O_NOCTTY);
	if (fd < 0)
		return strcpy(s, "");
	if (ttyname_r(fd, s, L_ctermid))
		strcpy(s, "");
	close(fd);
	return s;
}