xref: /aosp_15_r20/external/ltp/testcases/kernel/syscalls/acct/acct02_helper.c (revision 49cdfc7efb34551c7342be41a7384b9c40d7cab7)
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * Copyright (c) SUSE LLC, 2019
4  * Author: Christian Amann <[email protected]>
5  */
6 /*
7  * Dummy program used in acct02
8  */
9 
10 #include <unistd.h>
11 
main(void)12 int main(void)
13 {
14 	sleep(1);
15 	return 128;
16 }
17