Added all of the MH sources, including RCS files, in
[mmh] / docs / historical / mh-6.8.5 / uip / RCS / mhl.c,v
1 head    1.3;
2 access;
3 symbols;
4 locks; strict;
5 comment @ * @;
6
7
8 1.3
9 date    92.12.15.00.20.22;      author jromine; state Exp;
10 branches;
11 next    1.2;
12
13 1.2
14 date    92.11.04.00.45.45;      author jromine; state Exp;
15 branches;
16 next    1.1;
17
18 1.1
19 date    92.11.04.00.44.49;      author jromine; state Exp;
20 branches;
21 next    ;
22
23
24 desc
25 @mhl
26 @
27
28
29 1.3
30 log
31 @endif sugar
32 @
33 text
34 @/* mhl.c - the MH message listing program */
35 #ifndef lint
36 static char ident[] = "@@(#)$Id: mhl.c,v 1.2 1992/11/04 00:45:45 jromine Exp jromine $";
37 #endif  /* lint */
38 #ifdef LOCALE
39 #include        <locale.h>
40 #endif
41
42 main (argc, argv)
43 int     argc;
44 char  **argv;
45 {
46 #ifdef LOCALE
47     setlocale(LC_ALL, "");
48 #endif
49     done (mhl (argc, argv));
50 }
51
52 /* \f */
53
54 /* Cheat:  we are loaded with adrparse, which wants a routine called
55    OfficialName().  We call adrparse:getm() with the correct arguments
56    to prevent OfficialName() from being called.  Hence, the following
57    is to keep the loader happy.
58  */
59
60 char   *OfficialName (name)
61 register char  *name;
62 {
63     return name;
64 }
65 @
66
67
68 1.2
69 log
70 @add ID
71 LOCALE
72 @
73 text
74 @d3 2
75 a4 2
76 static char ident[] = "@@(#)$Id: comp.c,v 1.6 1992/11/04 00:40:01 jromine Exp $";
77 #endif  lint
78 @
79
80
81 1.1
82 log
83 @Initial revision
84 @
85 text
86 @d2 6
87 a8 1
88
89 d13 3
90 @