mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-19 18:46:30 +00:00
70 lines
1023 B
C
70 lines
1023 B
C
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <unistd.h>
|
|
#include <MacMemory.h>
|
|
#include <Processes.h>
|
|
|
|
int isatty(int fd) { return fd >= 0 && fd <= 2; }
|
|
void *sbrk(long increment)
|
|
{
|
|
Debugger();
|
|
return NewPtrClear(increment);
|
|
}
|
|
|
|
void _exit(int status)
|
|
{
|
|
if(status != 0)
|
|
Debugger();
|
|
ExitToShell();
|
|
for(;;)
|
|
;
|
|
}
|
|
|
|
ssize_t (*__write_hook)(int fd, const void*buf, size_t count) = NULL;
|
|
|
|
ssize_t write(int fd, const void *buf, size_t count)
|
|
{
|
|
if(__write_hook)
|
|
return (*__write_hook)(fd,buf,count);
|
|
return -1;
|
|
}
|
|
|
|
ssize_t read(int fd, void *buf, size_t count)
|
|
{
|
|
return -1;
|
|
}
|
|
|
|
int open(const char* name, int flags, mode_t mode)
|
|
{
|
|
__asm__ __volatile__ ("dc.w 0xa9ff");
|
|
return -1;
|
|
}
|
|
|
|
int close(int fd)
|
|
{
|
|
return -1;
|
|
}
|
|
|
|
int fstat(int fd, struct stat *buf)
|
|
{
|
|
return -1;
|
|
}
|
|
|
|
off_t lseek(int fd, off_t offset, int whence)
|
|
{
|
|
return (off_t) -1;
|
|
}
|
|
|
|
int kill(pid_t pid, int sig)
|
|
{
|
|
if(pid == 42)
|
|
_exit(42);
|
|
else
|
|
return -1;
|
|
}
|
|
|
|
pid_t getpid(void)
|
|
{
|
|
return 42;
|
|
}
|