Embedded Artistry libc
C Standard Library Support for Bare-metal Systems
at_quick_exit.c
Go to the documentation of this file.
1 #include <stdlib.h>
2 
3 __attribute__((weak)) int at_quick_exit(void (*func)(void))
4 {
5  (void)func;
6 
7  // EA libc does not exit on bare metal systems
8  return 0;
9 }
__attribute__((weak))
Definition: at_quick_exit.c:3
int at_quick_exit(void(*)(void))