4 static char *heap_end
= 0;
21 prev_heap_end
= heap_end
;
23 return ((caddr_t
) prev_heap_end
);
33 fstat (int file
, struct stat
*st
)
35 st
->st_mode
= S_IFCHR
;
40 stat (const char *filename
, struct stat
*st
)
42 st
->st_mode
= S_IFCHR
;
47 lseek (int fd
, off_t offset
, int type
)
49 return _sys_lseek (fd
, offset
, type
);
53 open (char *file
, int mode
, int perms
)
55 return _sys_open (file
, mode
, perms
);
61 return _sys_close (fd
);
71 kill (int pid
, int signal
)
77 /* This conflicts with the abort defined in newlib. */