1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (c) 2022 Google, Inc.
4  * Written by Andrew Scull <ascull@google.com>
5  */
6 
7 #ifndef __ASM_SANDBOX_MAIN_H
8 #define __ASM_SANDBOX_MAIN_H
9 
10 /**
11  * sandbox_main() - main entrypoint for sandbox
12  *
13  * @argc:	the number of arguments passed to the program
14  * @argv:	array of argc+1 pointers, of which the last one is null
15  */
16 int sandbox_main(int argc, char *argv[]);
17 
18 #endif /* __ASM_SANDBOX_MAIN_H */
19