home *** CD-ROM | disk | FTP | other *** search
- /*******************************************************************************
- *
- * !Test.c
- *
- ******************************************************************************/
-
- #include <stdio.h>
- #include <stddef.h>
- #include <stdlib.h>
-
- #include <sys/os.h>
- #include <errno.h>
-
- int
- main (int argc, char *argv[])
-
- {
- int loop;
- errno = 0;
- printf ("This is test 1 - argc = %d\n", argc);
-
- for (loop = 0; loop < argc; loop++)
- printf ("arg %d => %s\n", loop, argv[loop]);
-
- puts ("returning");
- if (errno)
- printf ("%d =. %s\n", errno, sys_errlist[errno]);
- return 0;
- }
-