Sign in
cobalt
/
cobalt
/
25f5f36f7ec10aaaebdc9eda48cd1423123bdd55
/
.
/
third_party
/
musl
/
src
/
unistd
/
ttyname.c
blob: 0f3e11411b068ec820b5e4212ba57d9dd6b59e54 [
file
] [
log
] [
blame
]
#include
<unistd.h>
#include
<errno.h>
#include
<limits.h>
char
*
ttyname
(
int
fd
)
{
static
char
buf
[
TTY_NAME_MAX
];
int
result
;
if
((
result
=
ttyname_r
(
fd
,
buf
,
sizeof
buf
)))
{
errno
=
result
;
return
NULL
;
}
return
buf
;
}