blob: 0144a60cee96bf1aa47e6c1c5c8cdb77810493cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/*
* Check basic -e status=none syscall filtering.
*
* Copyright (c) 2019 The strace developers.
* All rights reserved.
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "tests.h"
#include <stdio.h>
int
main(void)
{
puts("+++ exited with 0 +++");
return 0;
}
|