Copyright clean-up (part 1):
[AROS.git] / test / clib / argv0_test1.c
blob8f2e4a6315b97a26d26506fba276e662ae6cecfa
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", *arg1 = "/clib/argv0_slave";
13 execl(cmd, cmd, arg1, NULL);
15 return FAIL;