1 // SPDX-License-Identifier: GPL-2.0-or-later 2 /* 3 * Copyright (C) 2018 MediaTek Inc. All Rights Reserved. 4 */ 5 6 /* 7 * execveat_child.c 8 * dummy program which is used by execveat01.c and execveat03.c testcases 9 */ 10 11 #define TST_NO_DEFAULT_MAIN 12 #include "tst_test.h" 13 main(void)14int main(void) 15 { 16 tst_reinit(); 17 tst_res(TPASS, "execveat_child run as expected"); 18 return 0; 19 } 20