#include #include char *ctermid(char *s) { return s ? strcpy(s, "/dev/tty") : "/dev/tty"; } #ifdef TEST int main(void) { return 0; } #endif