Welcome to mirror list, hosted at ThFree Co, Russian Federation.

syscalls.c « h8300hms « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b716e62fc8c9b75a2f7ca99501fc24e6c568904f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* 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;
}