ref: 5d97bbe236e4f46b535a4c15a90b81ee1d5cda9e dir: /sys/src/ape/lib/ap/plan9/ttyname.c/
#include <unistd.h> #include <stdio.h> char * ttyname(int fd) { static char buf[100]; sprintf(buf, "/fd/%d", fd); return buf; }