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: 3ebac8843a31d298620bcf7ba721cfcb09beba16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/* Operating system stubs, set up for the MRI simulator */

#include <_ansi.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <errno.h>


int _DEFUN(_lseek,(file, ptr, dir),
	  int file _AND
	  int ptr _AND
	  int dir)
{
  return 0;
}

int _DEFUN(_close,(file),
	  int file)
{
  return -1;
}

int isatty(file)
     int file;
{
  return 1;
}

int _DEFUN(_fstat,(file, st),
	  int file _AND
	  struct stat *st)
{
  st->st_mode = S_IFCHR;
  return 0;
}

int
_open (path, flags)
     const char *path;
     int flags;
{
  return 0;
}

int
_unlink (path)
     const char *path;
{
  errno = EIO;
  return -1;
}