xref: /aosp_15_r20/external/minijail/libsyscalls.h (revision 4b9c6d91573e8b3a96609339b46361b5476dd0f9)
1 /* Copyright 2011 The ChromiumOS Authors
2  * Use of this source code is governed by a BSD-style license that can be
3  * found in the LICENSE file.
4  */
5 #ifndef MINIJAIL_LIBSYSCALLS_H_
6 #define MINIJAIL_LIBSYSCALLS_H_
7 #include <sys/types.h>
8 
9 struct syscall_entry {
10 	const char *name;
11 	int nr;
12 };
13 
14 extern const struct syscall_entry syscall_table[];
15 extern const size_t syscall_table_size;
16 
17 #endif /* MINIJAIL_LIBSYSCALLS_H_ */
18