1 /*
2  * Copyright (c) 2021 Nordic Semiconductor ASA
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 #ifndef SRC_TEST_HELPERS_H__
7 #define SRC_TEST_HELPERS_H__
8 
9 #include <zephyr/kernel.h>
10 
11 __syscall void test_helpers_log_setup(void);
12 __syscall int test_helpers_cycle_get(void);
13 __syscall bool test_helpers_log_dropped_pending(void);
14 
15 #include <zephyr/syscalls/test_helpers.h>
16 
17 #endif /* SRC_TEST_HELPERS_H__ */
18