From: plauger!pjp@uunet.uu.net (P.J. Plauger)
Subject: Re: Why Is Void Main Illegal?
Date: Sep 7, 94 07:27:39 am
Message-ID: <9409070727.0.UUL1.3#20134@plauger.UUCP>

The intent of the C Standard was to permit only two declarations for main:

	int main(void)
	int main(int, char **)

Other declarations often work, by accident or by extension, but they are not portable.