Copyright clean-up (part 1):
[AROS.git] / test / clib / argv0_test4.c
bloba8679d020d32ca6683f81c97db2341e693c72f7e
1 /*
2 Copyright © 1995-2014, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <unistd.h>
8 #include "test.h"
10 int main(void)
12 const char *cmd = "../clib/argv0_slave_nixc", *arg1 = "../clib/argv0_slave_nixc";
13 execl(cmd, cmd, arg1, NULL);
15 return FAIL;