Embedded Artistry libc
C Standard Library Support for Bare-metal Systems
exit.c
Go to the documentation of this file.
1 #include <stdlib.h>
2 
3 __attribute__((weak, noreturn)) void exit(int rc)
4 {
5  _Exit(rc);
6 }
void _Exit(int) __attribute__((noreturn))
void exit(int) __attribute__((noreturn))
__attribute__((weak, noreturn))
Definition: exit.c:3