libc: fix __cxa_atexit implicit declaration
Change-Id: Iacad18b332a717e4485c83df4bd42a850ff7699f
This commit is contained in:
parent
04cdfa67c7
commit
589eaa4c72
|
@ -26,10 +26,11 @@
|
|||
* SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
extern void *__dso_handle;
|
||||
extern void* __dso_handle;
|
||||
|
||||
extern int __cxa_atexit(void (*)(void*), void*, void*);
|
||||
|
||||
__attribute__ ((visibility ("hidden")))
|
||||
int atexit(void (*func)(void))
|
||||
{
|
||||
return (__cxa_atexit((void (*)(void *))func, (void *)0, &__dso_handle));
|
||||
int atexit(void (*func)(void)) {
|
||||
return (__cxa_atexit((void (*)(void*)) func, (void*) 0, &__dso_handle));
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue