xref: /plan9-contrib/sys/src/ape/lib/ap/plan9/ttyname.c (revision ec59a3ddbfceee0efe34584c2c9981a5e5ff1ec4)
1 #include <unistd.h>
2 #include <stdio.h>
3 
4 char *
5 ttyname(int fd)
6 {
7 	static char buf[100];
8 
9 	sprintf(buf, "/fd/%d", fd);
10 	return buf;
11 }
12