1 #include <stdio.h>
2 #include <string.h>
3 
ctermid(char * s)4 char *ctermid(char *s)
5 {
6 	return s ? strcpy(s, "/dev/tty") : "/dev/tty";
7 }
8