xref: /plan9-contrib/sys/src/ape/lib/ap/plan9/ttyname.c (revision 58da3067adcdccaaa043d0bfde28ba83b7ced07d)
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