xref: /aosp_15_r20/external/ltp/lib/newlib_tests/test_exec_child.c (revision 49cdfc7efb34551c7342be41a7384b9c40d7cab7)
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * Copyright (c) 2018 Cyril Hrubis <[email protected]>
4  */
5 
6 #define TST_NO_DEFAULT_MAIN
7 #include "tst_test.h"
8 
main(void)9 int main(void)
10 {
11 	tst_reinit();
12 	tst_res(TPASS, "Child passed!");
13 	return 0;
14 }
15