blob: 1612770af158ce068e2b9a1ecc89c4d910d76edd [file] [log] [blame]
#include <stdio.h>
#include <string.h>
char *ctermid(char *s)
{
return s ? strcpy(s, "/dev/tty") : "/dev/tty";
}