]> diplodocus.org Git - nmh/blob - uip/whatnow.c
Just reworded the bit about '%s' being safe not to quote (it's only safe not to
[nmh] / 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 }