view uip/whatnow.c @ 0:bce86c4163a3

Initial revision
author kono
date Mon, 18 Apr 2005 23:46:02 +0900
parents
children 441a2190cfae
line wrap: on
line source

/* whatnow.c - the MH WhatNow? shell */
#ifndef	lint
static char ident[] = "@(#)$Id$";
#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 */
    WhatNow (argc, argv);
}