Sign in
mojo
/
mojo-tools
/
83365b19d08baa9ba3f254866a59b01eba496f4f
/
.
/
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"
;
}