xref: /linux/tools/testing/selftests/pidfd/pidfd_exec_helper.c (revision b7fe4c0019b12d60ece3e99eeb0ccfd5a1d103e5)
1 #define _GNU_SOURCE
2 #include <stdio.h>
3 #include <stdlib.h>
4 #include <unistd.h>
5 
6 int main(int argc, char *argv[])
7 {
8 	if (pause())
9 		_exit(EXIT_FAILURE);
10 
11 	_exit(EXIT_SUCCESS);
12 }
13