head 1.1; access; symbols; locks; strict; comment @ * @; 1.1 date 2008.08.30.13.06.48; author kah; state Exp; branches; next ; desc @Initial revision @ 1.1 log @Initial revision @ text @#include "header.h" int main(int argc, char **argv) { (void)printf("Program %s executed with the following arguments:\n", argv[0]); for (int i = 1; i < argc; ++i) { (void)printf("[%s] ", argv[i]); } (void)printf("\n"); return EXIT_SUCCESS; } @