Sign in
android
/
platform
/
external
/
syslinux
/
refs/heads/oreo-mr1-release
/
.
/
com32
/
lib
/
abort.c
blob: b848be108bae9fabf0c7d887855c0a5a3fbeff78 [
file
] [
log
] [
blame
] [
edit
]
/*
* abort.c
*/
#include
<stdlib.h>
#include
<unistd.h>
void
abort
(
void
)
{
_exit
(
255
);
}