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

char * ctermid(char * s)
{
	static char ctid[L_ctermid + 1] = "/dev/tty";

	/* TODO: return the empty string if there is no controlling terminal */
	if (s == NULL) {
		s = ctid;
	} else {
		strcpy(s, ctid);
	}

	return s;
}
/*
POSIX(1)
*/