URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [newlib-1.18.0/] [newlib/] [libc/] [sys/] [linux/] [ctermid.c] - Rev 207
Compare with Previous | Blame | View Log
/* ctermid */ #include <stdio.h> #include <string.h> static char devname[] = "/dev/tty"; char * _DEFUN (ctermid, (buf), char *buf) { if (buf == NULL) return devname; return strcpy (buf, "/dev/tty"); }