]> diplodocus.org Git - nmh/blob - uip/mhl.c
Eliminated unsued sigset_t variables set and oset.
[nmh] / uip / mhl.c
1
2 /*
3 * mhl.c -- the nmh message listing program
4 *
5 * $Id$
6 */
7
8 #include <h/mh.h>
9
10
11 int
12 main (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
28 char *
29 OfficialName(char *name)
30 {
31 return name;
32 }