1 /* 2 * Copyright (c) 2022 Intel Corporation 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #include <zephyr/toolchain.h> 8 atexit(void (* function)(void))9 __weak int atexit(void (*function)(void)) 10 { 11 ARG_UNUSED(function); 12 13 return 0; 14 } 15