mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 05:51:04 +00:00
11 lines
310 B
C
11 lines
310 B
C
|
#include <stdlib.h>
|
||
|
|
||
|
/* Register a function to be called by exit or when a shared library
|
||
|
is unloaded. This routine is like __cxa_atexit, but uses the
|
||
|
calling sequence required by the ARM EABI. */
|
||
|
int
|
||
|
__aeabi_atexit (void *arg, void (*func) (void *), void *d)
|
||
|
{
|
||
|
return __cxa_atexit (func, arg, d);
|
||
|
}
|