URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [newlib-1.18.0/] [newlib/] [libc/] [sys/] [h8300hms/] [syscalls.c] - Rev 829
Compare with Previous | Blame | View Log
/* Operating system stubs, set up for the MRI simulator */ #include <_ansi.h> #include <errno.h> int _isatty(file) int file; { return 1; } int _unlink (path) const char *path; { errno = EIO; return -1; }