posixc.library: refactor __exec_do to make clear separate between regular code path...
[AROS.git] / test / clib / argv0_slave.c
blob006f05a6b56cbdffc24f87266be7db6c01dbb16f
1 #include <stdio.h>
2 #include <string.h>
4 #include "test.h"
6 int main(int argc, char *argv[])
8 TEST(argc == 2);
9 TEST(strcmp(argv[0], argv[1]) == 0);
11 return OK;
14 void cleanup(void)
16 /* NOP */
17 return;