aboutsummaryrefslogtreecommitdiffstats
path: root/opendircolors.c
diff options
context:
space:
mode:
Diffstat (limited to 'opendircolors.c')
-rw-r--r--opendircolors.c20
1 files changed, 9 insertions, 11 deletions
diff --git a/opendircolors.c b/opendircolors.c
index bc1e748..f6ec9c2 100644
--- a/opendircolors.c
+++ b/opendircolors.c
@@ -26,22 +26,20 @@
* SUCH DAMAGE.
*/
+#include <getopt.h>
#include <stdio.h>
-#include <sysexits.h>
#include <stdlib.h>
#include <string.h>
-#include <getopt.h>
+#include <sysexits.h>
-void usage(void);
+void usage(void);
-static const struct option long_options[] =
-{
- {"help", no_argument, NULL, 'h'},
- {"bourne-shell", no_argument, NULL, 'b'},
- {"sh", no_argument, NULL, 'b'},
- {"print-database", no_argument, NULL, 'p'},
- {NULL, no_argument, NULL, 0}
-};
+static const struct option long_options[] = { { "help", no_argument, NULL,
+ 'h' },
+ { "bourne-shell", no_argument, NULL, 'b' },
+ { "sh", no_argument, NULL, 'b' },
+ { "print-database", no_argument, NULL, 'p' },
+ { NULL, no_argument, NULL, 0 } };
int
main(int argc, char **argv)