URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [newlib-1.17.0/] [newlib/] [libc/] [sys/] [linux/] [ctermid.c] - Rev 816
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"); }