Made pcscio optional
[hexio] / nuttin.c
1 /* zero-content thread-testing program */
2
3 #include <stdio.h>
4
5 int main (int argc, char *argv []) {
6         int i;
7         for (i=0; i<argc; i++) {
8                 printf ("argv [%d] = \"%s\"\n", i, argv [i]);
9         }
10 }