Added all of the MH sources, including RCS files, in
[mmh] / docs / historical / mh-6.8.5 / uip / mhl.c
1 /* mhl.c - the MH message listing program */
2 #ifndef lint
3 static char ident[] = "@(#)$Id: mhl.c,v 1.3 1992/12/15 00:20:22 jromine Exp $";
4 #endif  /* lint */
5 #ifdef LOCALE
6 #include        <locale.h>
7 #endif
8
9 main (argc, argv)
10 int     argc;
11 char  **argv;
12 {
13 #ifdef LOCALE
14     setlocale(LC_ALL, "");
15 #endif
16     done (mhl (argc, argv));
17 }
18
19 /* \f */
20
21 /* Cheat:  we are loaded with adrparse, which wants a routine called
22    OfficialName().  We call adrparse:getm() with the correct arguments
23    to prevent OfficialName() from being called.  Hence, the following
24    is to keep the loader happy.
25  */
26
27 char   *OfficialName (name)
28 register char  *name;
29 {
30     return name;
31 }