posixc.library: refactor __exec_do to make clear separate between regular code path...
[AROS.git] / test / clib / argv0_test2.c
blobcb87ccaf56f0242f794f9eb34aa43d401d16f705
1 #include <unistd.h>
3 #include "test.h"
5 int main(void)
7 const char *cmd = "/clib/argv0_slave_nixc", *arg1 = "../clib/argv0_slave_nixc";
8 execl(cmd, cmd, arg1, NULL);
10 return FAIL;