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