Date: Mon, 5 Aug 1996 09:44:57 -0400 Message-Id: <199608051344.JAA00919@delorie.com> From: DJ Delorie To: eliz AT is DOT elta DOT co DOT il CC: lav AT video DOT yars DOT free DOT net, Giva AT bbb DOT no, djgpp AT delorie DOT com, gv AT nera DOT no In-reply-to: (message from Eli Zaretskii on Sun, 4 Aug 1996 17:20:37 +0200 (IST)) Subject: Re: Compile Errors > Hmmm... I always thought that ANSI C allows this: > > int main (int argc, char *argv[], char *environ[]) ANSI states one of the two following are allowed: extern int main(void); extern int main(int argc, char **argv);