2022-01-21 08:27:46 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2022 Intel Corporation
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
2022-05-06 16:49:15 +08:00
|
|
|
#include <zephyr/toolchain.h>
|
2022-01-21 08:27:46 +08:00
|
|
|
|
|
|
|
__weak int atexit(void (*function)(void))
|
|
|
|
{
|
|
|
|
ARG_UNUSED(function);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|