blob: 7a2f0d3a8d59c206a2eebf54346745e75cf8a41e [file] [log] [blame]
Andrew Scull001c39a2022-05-30 10:00:10 +00001/* 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 */
16int sandbox_main(int argc, char *argv[]);
17
18#endif /* __ASM_SANDBOX_MAIN_H */