Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libgloss/arm/_exit.c')
-rw-r--r--libgloss/arm/_exit.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/libgloss/arm/_exit.c b/libgloss/arm/_exit.c
deleted file mode 100644
index ed0087637..000000000
--- a/libgloss/arm/_exit.c
+++ /dev/null
@@ -1,15 +0,0 @@
-#include <_ansi.h>
-
-int _kill _PARAMS ((int, int));
-void _exit _PARAMS ((int));
-
-void
-_exit (int status)
-{
- /* There is only one SWI for both _exit and _kill. For _exit, call
- the SWI with the second argument set to -1, an invalid value for
- signum, so that the SWI handler can distinguish the two calls.
- Note: The RDI implementation of _kill throws away both its
- arguments. */
- _kill (status, -1);
-}