1 /*
2  * Copyright (c) 2022 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 KERNEL_FFF_FAKES_LIST(FAKE)         \
12 		FAKE(k_uptime_ticks)                \
13 
14 DECLARE_FAKE_VALUE_FUNC(int64_t, k_uptime_ticks);
15