summaryrefslogtreecommitdiff
path: root/com32/lib/abort.c
blob: b848be108bae9fabf0c7d887855c0a5a3fbeff78 (plain)
1
2
3
4
5
6
7
8
9
10
11
/*
 * abort.c
 */

#include <stdlib.h>
#include <unistd.h>

void abort(void)
{
    _exit(255);
}