1 /*
2  * Copyright (c) 2021 Synopsys.
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #include <toolchain.h>
8 
9 __weak void *__dso_handle;
10 
__cxa_atexit(void (* destructor)(void *),void * objptr,void * dso)11 int __cxa_atexit(void (*destructor)(void *), void *objptr, void *dso)
12 {
13 	ARG_UNUSED(destructor);
14 	ARG_UNUSED(objptr);
15 	ARG_UNUSED(dso);
16 	return 0;
17 }
18 
atexit(void (* function)(void))19 int atexit(void (*function)(void))
20 {
21 	return 0;
22 }
23