xref: /aosp_15_r20/external/ltp/testcases/kernel/syscalls/setpgid/setpgid03_child.c (revision 49cdfc7efb34551c7342be41a7384b9c40d7cab7)
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * Copyright (c) 2013 Oracle and/or its affiliates. All Rights Reserved.
4  * Copyright (C) 2021 SUSE LLC Andrea Cervesato <[email protected]>
5  */
6 
7 #define TST_NO_DEFAULT_MAIN
8 #include "tst_test.h"
9 
main(void)10 int main(void)
11 {
12 	tst_reinit();
13 	TST_CHECKPOINT_WAKE_AND_WAIT(0);
14 
15 	return 0;
16 }
17