diff options
Diffstat (limited to 'com32/lib/sys/exit.S')
-rw-r--r-- | com32/lib/sys/exit.S | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/com32/lib/sys/exit.S b/com32/lib/sys/exit.S index c2949fc6..2ab80122 100644 --- a/com32/lib/sys/exit.S +++ b/com32/lib/sys/exit.S @@ -2,6 +2,13 @@ * Implementation of _exit() for com32 based on c32entry.S */ .text + + .globl _Exit + .type _Exit, @function +_Exit: + /* Just fall through to _exit */ + .size _Exit, .-_Exit + .globl _exit .type _exit, @function _exit: |