source: trunk/libs/newlib/src/newlib/libc/sys/h8300hms/syscalls.c

Last change on this file was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 223 bytes
Line 
1/* Operating system stubs, set up for the MRI simulator */
2
3#include <_ansi.h>
4#include <errno.h>
5
6int _isatty(file)
7     int file;
8{
9  return 1;
10}
11
12int
13_unlink (path)
14     const char *path;
15{
16  errno = EIO;
17  return -1;
18}
Note: See TracBrowser for help on using the repository browser.