3 <<abort>>---abnormal termination of a program
13 Use <<abort>> to signal that your program has detected a condition it
14 cannot deal with. Normally, <<abort>> ends your program's execution.
16 In general implementation, <<abort>> raises the exception <<SIGABRT>>.
17 But for nds32 target, currently it is not necessary for MCU platform.
18 We can just call <<_exit>> to terminate program.
21 <<abort>> does not return to its caller.
24 ANSI C requires <<abort>>.
26 Supporting OS subroutines required: <<_exit>>.