Blame view

Giac_maj/epsilon-giac/liba/src/aeabi-rt/atexit.c 286 Bytes
6663b6c9   adorian   projet complet av...
1
2
3
4
5
6
7
  /* See the "Run-time ABI for the ARM Architecture", Section 4.4.5 */
  
  int __cxa_atexit(void (* dtor)(void * this), void * object, void * handle);
  
  int  __aeabi_atexit(void * object, void (*destroyer)(void *), void * dso_handle) {
    return __cxa_atexit(destroyer, object, dso_handle);
  }