libc/newlib/libc/sys/linux/ctermid.c

16 lines
198 B
C

/* ctermid */
#include <stdio.h>
#include <string.h>
static char devname[] = "/dev/tty";
char *
ctermid (char *buf)
{
if (buf == NULL)
return devname;
return strcpy (buf, "/dev/tty");
}