Sign in
mojo
/
mojo-tools
/
c8bbaed8e0650d920840b6e79d3cc4c4f040f2e2
/
.
/
fusl
/
src
/
unistd
/
ctermid.c
blob: 1612770af158ce068e2b9a1ecc89c4d910d76edd [
file
]
#include
<stdio.h>
#include
<string.h>
char
*
ctermid
(
char
*
s
)
{
return
s
?
strcpy
(
s
,
"/dev/tty"
)
:
"/dev/tty"
;
}