1 /* 2 * Copyright (c) 2020 Intel Corporation. 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef _USERSPACE_H_ 8 #define _USERSPACE_H_ 9 10 __syscall int dummy_syscall(void); 11 __syscall int validation_overhead_syscall(void); 12 13 #include <zephyr/syscalls/userspace.h> 14 15 #endif /* _USERSPACE_H_ */ 16