4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-18 12:29:32 +08:00

19 lines
223 B
C
Raw Normal View History

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