From owner-freebsd-current Fri Nov 22 00:24:01 1996 Return-Path: owner-current Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id AAA05368 for current-outgoing; Fri, 22 Nov 1996 00:24:01 -0800 (PST) Received: from irz301.inf.tu-dresden.de (irz301.inf.tu-dresden.de [141.76.1.11]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id AAA05300 for ; Fri, 22 Nov 1996 00:22:51 -0800 (PST) Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by irz301.inf.tu-dresden.de (8.6.12/8.6.12-s1) with ESMTP id JAA07974; Fri, 22 Nov 1996 09:22:00 +0100 Received: (from uucp@localhost) by sax.sax.de (8.6.12/8.6.12-s1) with UUCP id JAA17461; Fri, 22 Nov 1996 09:21:59 +0100 Received: (from j@localhost) by uriah.heep.sax.de (8.8.2/8.6.9) id IAA26667; Fri, 22 Nov 1996 08:55:56 +0100 (MET) From: J Wunsch Message-Id: <199611220755.IAA26667@uriah.heep.sax.de> Subject: Re: cdrom boot? To: freebsd-current@FreeBSD.org (FreeBSD-current users) Date: Fri, 22 Nov 1996 08:55:56 +0100 (MET) Cc: Christian.Gusenbauer@utimaco.co.at (DI. Christian Gusenbauer) Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) In-Reply-To: <329550A9.1B0@utimaco.co.at> from "DI. Christian Gusenbauer" at "Nov 22, 96 08:05:13 am" X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E X-Mailer: ELM [version 2.4ME+ PL17 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-current@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk As DI. Christian Gusenbauer wrote: > I played a little bit with bcc yesterday and found out, that the > version I have only supports K&R standard. Is this right? Yes, it is. > Is there any converter available which converts ANSI-C to K&R? unprotoize. It's part of the gcc distribution. j@uriah 276% cat > foo.c #include int main(int argc, char **argv) { printf("Hello world!\n"); return 0; } ^D j@uriah 277% unprotoize foo.c unprotoize: compiling `foo.c' unprotoize: converting file `foo.c' j@uriah 278% cat foo.c #include int main(argc, argv) int argc; char **argv; { printf("Hello world!\n"); return 0; } -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-)