1 /* 2 * Copyright (c) 2017 Intel Corporation 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef _TEST_SYSCALLS_H_ 8 #define _TEST_SYSCALLS_H_ 9 #include <zephyr/kernel.h> 10 11 __syscall void test_arm_user_syscall(void); 12 __syscall void test_arm_cpu_write_reg(void); 13 14 #include <zephyr/syscalls/test_syscalls.h> 15 16 #endif /* _TEST_SYSCALLS_H_ */ 17