mirror of
https://github.com/encounter/newlib.git
synced 2026-03-30 11:31:09 -07:00
9 lines
137 B
C
9 lines
137 B
C
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
|
|
void abort(void) {
|
|
write (2, "Abort called.\n", sizeof("Abort called.\n")-1);
|
|
_exit (1);
|
|
}
|
|
|