* uip/sendsbr.c: replaced st_mtim with st_mtime, that's what
[mmh] / uip / mhl.c
1
2 /*
3  * mhl.c -- the nmh message listing program
4  *
5  * $Id$
6  *
7  * This code is Copyright (c) 2002, by the authors of nmh.  See the
8  * COPYRIGHT file in the root directory of the nmh distribution for
9  * complete copyright information.
10  */
11
12 #include <h/mh.h>
13
14 /* prototype from mhlsbr.c */
15 int mhl (int, char **);
16
17
18 int
19 main (int argc, char **argv)
20 {
21 #ifdef LOCALE
22     setlocale(LC_ALL, "");
23 #endif
24     return done (mhl (argc, argv));
25 }
26
27
28 /*
29  * Cheat: we are loaded with adrparse, which wants a routine called
30  * OfficialName().  We call adrparse:getm() with the correct arguments
31  * to prevent OfficialName() from being called.  Hence, the following
32  * is to keep the loader happy.
33  */
34
35 char *
36 OfficialName(char *name)
37 {
38     return name;
39 }