embeddedartistry / libc

libc targeted for embedded systems usage. Reduced set of functionality (due to embedded nature). Chosen for portability and quick bringup.
MIT License
520 stars 67 forks source link

stdlib: exit/abort #44

Closed phillipjohnston closed 5 years ago

phillipjohnston commented 6 years ago

pragma mark - exits -

_Noreturn void abort (void); int atexit (void () (void)); _Noreturn void exit (int); _Noreturn void _Exit (int); int at_quick_exit (void () (void)); _Noreturn void quick_exit (int);