summaryrefslogtreecommitdiffhomepage
path: root/arch/nt32/src/vtbl.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/nt32/src/vtbl.c')
-rw-r--r--arch/nt32/src/vtbl.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/arch/nt32/src/vtbl.c b/arch/nt32/src/vtbl.c
deleted file mode 100644
index f21ce17..0000000
--- a/arch/nt32/src/vtbl.c
+++ /dev/null
@@ -1,25 +0,0 @@
-#include <unistd.h>
-#include <stdint.h>
-#include "psxglue.h"
-#include "errno.h"
-
-const struct __ldso_vtbl * __ldso_vtbl = 0;
-const struct __psx_vtbl * __psx_vtbl = 0;
-unsigned long ** __syscall_vtbl = 0;
-unsigned long __teb_sys_idx = 0;
-unsigned long __teb_libc_idx = 0;
-
-long __syscall_alert(long n)
-{
- char __lmsg[] = "DING ALARM! UNIMPLEMENTED SYSCALL 000\n";
-
- __lmsg[36] = '0' + n % 10; n /= 10;
- __lmsg[35] = '0' + n % 10; n /= 10;
- __lmsg[34] = '0' + n % 10;
-
- __psx_vtbl->log_output(
- __lmsg,
- sizeof(__lmsg));
-
- return -ENOSYS;
-}