source: trunk/libs/newlib/src/newlib/libc/sys/arm/aeabi_atexit.c @ 690

Last change on this file since 690 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 310 bytes
Line 
1#include <stdlib.h>
2
3/* Register a function to be called by exit or when a shared library
4   is unloaded.  This routine is like __cxa_atexit, but uses the
5   calling sequence required by the ARM EABI.  */
6int
7__aeabi_atexit (void *arg, void (*func) (void *), void *d)
8{
9  return __cxa_atexit (func, arg, d);
10}
Note: See TracBrowser for help on using the repository browser.