musl-tcc/src/unistd/ttyname.c

15 lines
230 B
C
Raw Permalink Normal View History

2022-03-20 08:48:53 +00:00
#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;
}