1head 1.1; 2access; 3symbols; 4locks; strict; 5comment @ * @; 6 7 81.1 9date 2008.08.30.13.06.48; author kah; state Exp; 10branches; 11next ; 12 13 14desc 15@Initial revision 16@ 17 18 191.1 20log 21@Initial revision 22@ 23text 24@#include "header.h" 25 26int main(int argc, char **argv) { 27 28 (void)printf("Program %s executed with the following arguments:\n", argv[0]); 29 for (int i = 1; i < argc; ++i) { 30 (void)printf("[%s] ", argv[i]); 31 } 32 (void)printf("\n"); 33 34 return EXIT_SUCCESS; 35} 36@ 37