From 32a453f71b8cd6e9efc27c1c86cfa6d991ff99f4 Mon Sep 17 00:00:00 2001 From: marco Date: Sat, 1 Feb 2003 21:57:08 +0000 Subject: [PATCH] * Fix from "oco" to get 1.1 working --- rtl/beos/i386/cprt0.as | 7 +++++++ rtl/beos/i386/prt0.as | 7 +++++++ 2 files changed, 14 insertions(+) diff --git a/rtl/beos/i386/cprt0.as b/rtl/beos/i386/cprt0.as index b652b355c5..8d43936c22 100644 --- a/rtl/beos/i386/cprt0.as +++ b/rtl/beos/i386/cprt0.as @@ -208,3 +208,10 @@ sys_rmdir: movl $0x60,%eax int $0x25 ret + +/* actual syscall */ +.globl sys_call +.type sys_call,@function +sys_call: +int $0x25 +ret diff --git a/rtl/beos/i386/prt0.as b/rtl/beos/i386/prt0.as index b6a9375fc0..ecebd7f564 100644 --- a/rtl/beos/i386/prt0.as +++ b/rtl/beos/i386/prt0.as @@ -172,3 +172,10 @@ sys_rmdir: movl $0x60,%eax int $0x25 ret + +/* actual syscall */ +.globl sys_call +.type sys_call,@function +sys_call: +int $0x25 +ret