Lots of little code cleanups to prevent warnings - mostly making sure
[mmh] / uip / whatnow.c
1
2 /*
3  * whatnow.c -- the nmh `WhatNow' shell
4  *
5  * $Id$
6  */
7
8 #include <h/mh.h>
9
10 /* from whatnowsbr.c */
11 int WhatNow (int, char **);
12
13
14 int
15 main (int argc, char **argv)
16 {
17 #ifdef LOCALE
18     setlocale(LC_ALL, "");
19 #endif
20     return WhatNow (argc, argv);
21 }