aboutsummaryrefslogtreecommitdiff
path: root/libgloss/arc/nsim-syscalls.c
diff options
context:
space:
mode:
Diffstat (limited to 'libgloss/arc/nsim-syscalls.c')
-rw-r--r--libgloss/arc/nsim-syscalls.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libgloss/arc/nsim-syscalls.c b/libgloss/arc/nsim-syscalls.c
index 80747e9..807f95c 100644
--- a/libgloss/arc/nsim-syscalls.c
+++ b/libgloss/arc/nsim-syscalls.c
@@ -100,7 +100,7 @@ _open (const char * pathname, int flags, int mode)
}
/* Should be provided by crt0.S. */
-extern void __attribute__((noreturn, long_call)) _exit_halt ();
+extern void __attribute__((noreturn, long_call)) _exit_halt (int ret);
void
__attribute__((noreturn))
@@ -109,7 +109,7 @@ _exit (int ret)
/* Doing an "exit" system call would work on nSIM with hostlink, but call to
_exit_halt, which will do a CPU halt is more universal and will work in
many other cases as well, including an FPGA/SoC. */
- _exit_halt ();
+ _exit_halt (ret);
}
/* This is a copy of newlib/libc/posix/_isatty.c. It is needed because nSIM