repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
update netinet/udp.h for linux v4.18
[musl.git]
/
src
/
unistd
/
ttyname.c
blob
0f3e11411b068ec820b5e4212ba57d9dd6b59e54
1
#include <unistd.h>
2
#include <errno.h>
3
#include <limits.h>
4
5
char
*
ttyname
(
int
fd
)
6
{
7
static char
buf
[
TTY_NAME_MAX
];
8
int
result
;
9
if
((
result
=
ttyname_r
(
fd
,
buf
,
sizeof
buf
))) {
10
errno
=
result
;
11
return
NULL
;
12
}
13
return
buf
;
14
}