source: trunk/third/nmh/uip/mhl.c @ 12455

Revision 12455, 549 bytes checked in by danw, 26 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r12454, which included commits to RCS files with non-trunk default branches.
Line 
1
2/*
3 * mhl.c -- the nmh message listing program
4 *
5 * $Id: mhl.c,v 1.1.1.1 1999-02-07 18:14:14 danw Exp $
6 */
7
8#include <h/mh.h>
9
10
11int
12main (int argc, char **argv)
13{
14#ifdef LOCALE
15    setlocale(LC_ALL, "");
16#endif
17    done (mhl (argc, argv));
18}
19
20
21/*
22 * Cheat: we are loaded with adrparse, which wants a routine called
23 * OfficialName().  We call adrparse:getm() with the correct arguments
24 * to prevent OfficialName() from being called.  Hence, the following
25 * is to keep the loader happy.
26 */
27
28char *
29OfficialName(char *name)
30{
31    return name;
32}
Note: See TracBrowser for help on using the repository browser.