newlib-cygwin/newlib/libc/sys/h8300hms/syscalls.c

19 lines
223 B
C
Raw Normal View History

2000-02-18 03:39:52 +08:00
/* Operating system stubs, set up for the MRI simulator */
#include <_ansi.h>
#include <errno.h>
2000-02-18 03:39:52 +08:00
int _isatty(file)
2000-02-18 03:39:52 +08:00
int file;
{
return 1;
}
int
_unlink (path)
const char *path;
{
errno = EIO;
return -1;
}