blob: 122bed8a5e3c7d29583582d39deb86b002afc140 (
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 "stdio/_stdio.h"
#include "string.h"
char * ctermid(char * s)
{
/* TODO: return the empty string if there is no controlling terminal */
if (s == NULL) {
s = __stdio.ctermid;
} else {
strcpy(s, __stdio.ctermid);
}
return s;
}
/*
POSIX(1)
*/
|