You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
313 B
13 lines
313 B
/* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */
|
|
#ifndef __SYSCALL_HELPERS_H
|
|
#define __SYSCALL_HELPERS_H
|
|
|
|
#include <stddef.h>
|
|
|
|
void init_syscall_names(void);
|
|
void free_syscall_names(void);
|
|
void list_syscalls(void);
|
|
void syscall_name(unsigned n, char *buf, size_t size);
|
|
|
|
#endif /* __SYSCALL_HELPERS_H */
|