blob: b9ec17a529acbe5561276a9cf7a718bbb986466b [file] [log] [blame]
/* 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;
}