From: Piotr Majewski Newsgroups: comp.os.msdos.djgpp Subject: Obsolete style of function parameters declaration? Date: Thu, 19 Sep 2002 11:56:02 +0200 Organization: news.onet.pl Lines: 22 Sender: pmaje AT poczta DOT onet DOT pl@mks-30.mks.com.pl Message-ID: <3D899F32.365B4777@poczta.onet.pl> NNTP-Posting-Host: mks-30.mks.com.pl Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: news.onet.pl 1032429247 19767 195.117.79.30 (19 Sep 2002 09:54:07 GMT) X-Complaints-To: abuse AT onet DOT pl NNTP-Posting-Date: 19 Sep 2002 09:54:07 GMT X-Mailer: Mozilla 4.78 [en] (Win98; U) X-Accept-Language: en To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Hello It is possible to compile obsolete code like this (with djgpp, of course): void filter(char *dest, char *source); ... void filter(dest, source) char* dest; char* source; { ... } How to do this? Is there any secret option ("-traditional" doesn't work)? Thanks, Piotr Majewski