projects
/
mmh
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Added test of -nosequence to test-pick.
[mmh]
/
docs
/
historical
/
mh-6.8.5
/
uip
/
whatnow.c
1
/* whatnow.c - the MH WhatNow? shell */
2
#ifndef lint
3
static char ident[] = "@(#)$Id: whatnow.c,v 1.3 1992/12/15 00:20:22 jromine Exp $";
4
#endif /* lint */
5
6
#ifdef LOCALE
7
#include <locale.h>
8
#endif
9
10
main (argc, argv)
11
int argc;
12
char **argv;
13
{
14
#ifdef LOCALE
15
setlocale(LC_ALL, "");
16
#endif
17
WhatNow (argc, argv);
18
}