Removed the space between function names and the opening parenthesis.
[mmh] / uip / mhl.c
index fdbd679..48b8f1d 100644 (file)
--- a/uip/mhl.c
+++ b/uip/mhl.c
@@ -1,24 +1,23 @@
-
 /*
- * mhl.c -- the nmh message listing program
- *
- * This code is Copyright (c) 2002, by the authors of nmh.  See the
- * COPYRIGHT file in the root directory of the nmh distribution for
- * complete copyright information.
- */
+** mhl.c -- the nmh message listing program
+**
+** This code is Copyright (c) 2002, by the authors of nmh.  See the
+** COPYRIGHT file in the root directory of the nmh distribution for
+** complete copyright information.
+*/
 
 #include <h/mh.h>
 
 /* prototype from mhlsbr.c */
-int mhl (int, char **);
+int mhl(int, char **);
 
 
 int
-main (int argc, char **argv)
+main(int argc, char **argv)
 {
 #ifdef LOCALE
-    setlocale(LC_ALL, "");
+       setlocale(LC_ALL, "");
 #endif
-    done (mhl (argc, argv));
-    return 1;
+       done(mhl(argc, argv));
+       return 1;
 }