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

char * ctermid(char * s)
{
	static char termid[L_ctermid] = "/dev/tty";
	
	if (s == NULL) {
		s = termid;
	} else {
		strcpy(s, termid);
	}

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