view uip/mhl.c @ 12:441a2190cfae

Lion fix
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sat, 21 Apr 2012 13:10:49 +0900
parents bce86c4163a3
children
line wrap: on
line source

/* mhl.c - the MH message listing program */
#ifndef	lint
static char ident[] = "@(#)$Id: mhl.c,v 1.1.1.1 2005/04/18 14:46:07 kono Exp $";
#endif	/* lint */
#ifdef LOCALE
#include	<locale.h>
#endif

main (argc, argv)
int     argc;
char  **argv;
{
#ifdef LOCALE
    setlocale(LC_ALL, "");
#endif
#ifdef JAPAN
    ml_init();
#endif /* JAPAN */
    done (mhl (argc, argv));
}

/*  */

/* Cheat:  we are loaded with adrparse, which wants a routine called
   OfficialName().  We call adrparse:getm() with the correct arguments
   to prevent OfficialName() from being called.  Hence, the following
   is to keep the loader happy.
 */

char   *OfficialName (name)
register char  *name;
{
    return name;
}