Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
musl
/
f450c150d31730b18a145cca17150427cf3f20e6
/
.
/
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"
;
}