aboutsummaryrefslogtreecommitdiff
path: root/libgloss/arm/_exit.c
blob: ca2d21c4320d78b86c7494590975b7a66e75d8f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <_ansi.h>

int _kill (int, int);
void _exit (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);
}