Removed the space between function names and the opening parenthesis.
[mmh] / uip / whatnow.c
1 /*
2 ** whatnow.c -- the nmh `WhatNow' shell
3 **
4 ** This code is Copyright (c) 2002, by the authors of nmh.  See the
5 ** COPYRIGHT file in the root directory of the nmh distribution for
6 ** complete copyright information.
7 */
8
9 #include <h/mh.h>
10
11 /* from whatnowsbr.c */
12 int WhatNow(int, char **);
13
14
15 int
16 main(int argc, char **argv)
17 {
18 #ifdef LOCALE
19         setlocale(LC_ALL, "");
20 #endif
21         return WhatNow(argc, argv);
22 }