1*387f9dfdSAndroid Build Coastguard Worker /* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */ 2*387f9dfdSAndroid Build Coastguard Worker #ifndef __SYSCALL_HELPERS_H 3*387f9dfdSAndroid Build Coastguard Worker #define __SYSCALL_HELPERS_H 4*387f9dfdSAndroid Build Coastguard Worker 5*387f9dfdSAndroid Build Coastguard Worker #include <stddef.h> 6*387f9dfdSAndroid Build Coastguard Worker 7*387f9dfdSAndroid Build Coastguard Worker void init_syscall_names(void); 8*387f9dfdSAndroid Build Coastguard Worker void free_syscall_names(void); 9*387f9dfdSAndroid Build Coastguard Worker void list_syscalls(void); 10*387f9dfdSAndroid Build Coastguard Worker void syscall_name(unsigned n, char *buf, size_t size); 11*387f9dfdSAndroid Build Coastguard Worker 12*387f9dfdSAndroid Build Coastguard Worker #endif /* __SYSCALL_HELPERS_H */ 13