plan9fox/sys/src/ape/lib/ap/plan9/ttyname.c
2011-03-30 19:35:09 +03:00

12 lines
133 B
C

#include <unistd.h>
#include <stdio.h>
char *
ttyname(int fd)
{
static char buf[100];
sprintf(buf, "/fd/%d", fd);
return buf;
}