URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [branches/] [newlib/] [newlib/] [libgloss/] [libnosys/] [isatty.c] - Rev 1777
Go to most recent revision | Compare with Previous | Blame | View Log
/* * Stub version of isatty. */ #include "config.h" #include <_ansi.h> #include <_syslist.h> #include <errno.h> #undef errno extern int errno; #include "warning.h" int _DEFUN (isatty, (file), int file) { errno = ENOSYS; return 0; } stub_warning(isatty)
Go to most recent revision | Compare with Previous | Blame | View Log