1 /*
2  * Copyright (c) 2024 Intel Corporation
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef _TEST_EDK_H_
8 #define _TEST_EDK_H_
9 #include <zephyr/kernel.h>
10 
11 #ifdef __cplusplus
12 extern "C" {
13 #endif
14 
15 __syscall int foo(int bar);
16 
17 #ifdef __cplusplus
18 }
19 #endif
20 
21 #include <zephyr/syscalls/app_api.h>
22 #endif /* _TEST_EDK_H_ */
23