--- trunk/OOPSE-4/src/utils/getopt1.c 2004/10/06 23:03:54 1541 +++ trunk/OOPSE-4/src/utils/getopt1.c 2005/04/15 22:04:00 2204 @@ -1,6 +1,6 @@ /* getopt_long and getopt_long_only entry points for GNU getopt. Copyright (C) 1987,88,89,90,91,92,93,94,96,97,98 - Free Software Foundation, Inc. + Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -110,15 +110,15 @@ main (argc, argv) int this_option_optind = optind ? optind : 1; int option_index = 0; static struct option long_options[] = - { - {"add", 1, 0, 0}, - {"append", 0, 0, 0}, - {"delete", 1, 0, 0}, - {"verbose", 0, 0, 0}, - {"create", 0, 0, 0}, - {"file", 1, 0, 0}, - {0, 0, 0, 0} - }; + { + {"add", 1, 0, 0}, + {"append", 0, 0, 0}, + {"delete", 1, 0, 0}, + {"verbose", 0, 0, 0}, + {"create", 0, 0, 0}, + {"file", 1, 0, 0}, + {0, 0, 0, 0} + }; c = getopt_long (argc, argv, "abc:d:0123456789", long_options, &option_index);