mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-16 11:31:00 +08:00
16 lines
249 B
C
16 lines
249 B
C
|
/* Stub version of _exit. */
|
||
|
|
||
|
#include <limits.h>
|
||
|
#include "config.h"
|
||
|
#include <_ansi.h>
|
||
|
#include <_syslist.h>
|
||
|
|
||
|
_VOID
|
||
|
_DEFUN (_exit, (rc),
|
||
|
int rc)
|
||
|
{
|
||
|
/* Default stub just causes a divide by 0 exception. */
|
||
|
int x = rc / INT_MAX;
|
||
|
x = 4 / x;
|
||
|
}
|