mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-01 11:52:47 +00:00
19 lines
223 B
C
19 lines
223 B
C
|
/* 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;
|
||
|
}
|