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