Rivoreo Source Code Repositories
src.rivoreo.one
/
devel
/
nativetools
/
bf63a4af4f84f534eab8b79f1b386229ab830bff
/
.
/
nativelibc
/
abort.c
blob: 29a9b1de2525310c22e1a6e630f51ff5577d4a63 [
file
] [
log
] [
blame
] [
raw
]
#include
<stdio.h>
#include
<stdlib.h>
void
abort
()
{
puts
(
"Aborted"
);
exit
(
134
);
}