Sign in
cobalt
/
cobalt
/
25f5f36f7ec10aaaebdc9eda48cd1423123bdd55
/
.
/
third_party
/
musl
/
src
/
unistd
/
ctermid.c
blob: 1612770af158ce068e2b9a1ecc89c4d910d76edd [
file
] [
log
] [
blame
]
#include
<stdio.h>
#include
<string.h>
char
*
ctermid
(
char
*
s
)
{
return
s
?
strcpy
(
s
,
"/dev/tty"
)
:
"/dev/tty"
;
}