aboutsummaryrefslogtreecommitdiff
path: root/arch/sandbox/include/asm/main.h
blob: 7a2f0d3a8d59c206a2eebf54346745e75cf8a41e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* SPDX-License-Identifier: GPL-2.0+ */
/*
 * Copyright (c) 2022 Google, Inc.
 * Written by Andrew Scull <ascull@google.com>
 */

#ifndef __ASM_SANDBOX_MAIN_H
#define __ASM_SANDBOX_MAIN_H

/**
 * sandbox_main() - main entrypoint for sandbox
 *
 * @argc:	the number of arguments passed to the program
 * @argv:	array of argc+1 pointers, of which the last one is null
 */
int sandbox_main(int argc, char *argv[]);

#endif /* __ASM_SANDBOX_MAIN_H */