1 /*
2  * Copyright (c) 2024 Nordic Semiconductor ASA
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #include <zephyr/kernel.h>
8 #include <zephyr/fff.h>
9 
10 /* List of fakes used by this unit tester */
11 #define SYS_CLOCK_MOCKS_FFF_FAKES_LIST(FAKE)                                                       \
12 	FAKE(sys_timepoint_calc)                                                                   \
13 	FAKE(sys_timepoint_timeout)
14 
15 DECLARE_FAKE_VALUE_FUNC(k_timepoint_t, sys_timepoint_calc, k_timeout_t);
16 DECLARE_FAKE_VALUE_FUNC(k_timeout_t, sys_timepoint_timeout, k_timepoint_t);
17