1 /*
2 * Check basic seccomp filtering with large number of traced syscalls.
3 *
4 * Copyright (c) 2018-2019 The strace developers.
5 * All rights reserved.
6 *
7 * SPDX-License-Identifier: GPL-2.0-or-later
8 */
9
10 #include "tests.h"
11 #include <stdio.h>
12 #include <unistd.h>
13
14 int
15 main(void)
16 {
17 printf("%-5d +++ exited with 0 +++\n", getpid());
18 return 0;
19 }