1 // SPDX-License-Identifier: GPL-2.0-or-later 2 /* 3 * Shell test C child example. 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 13 tst_res(TPASS, "C child works fine!"); 14 15 return 0; 16 } 17