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__
__attribute__((weak))
Definition:
cxa_atexit.c:3
cxa_atexit
int cxa_atexit(void(*)(void *), void *, void *)
stdlib.h
src
crt
cxa_atexit.c
Generated by
1.8.15