From owner-cvs-all Sun Sep 9 18:45:43 2001 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 99D0637B406; Sun, 9 Sep 2001 18:45:37 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.11.4/8.11.4) id f8A1jbI67312; Sun, 9 Sep 2001 18:45:37 -0700 (PDT) (envelope-from peter) Message-Id: <200109100145.f8A1jbI67312@freefall.freebsd.org> From: Peter Wemm Date: Sun, 9 Sep 2001 18:45:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern subr_prf.c src/sys/sys systm.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2001/09/09 18:45:37 PDT Modified files: sys/kern subr_prf.c sys/sys systm.h Log: This hack brought to you by some questionable ``optimizations'' in gcc-3. gcc-3 takes it apon itself to convert: printf("string\n") -> puts("string"); and: printf("a"); -> putchar('a') etc. I dont know what they've been smoking over there in gcc-land, but it must be pretty good stuff. Revision Changes Path 1.72 +33 -17 src/sys/kern/subr_prf.c 1.152 +5 -1 src/sys/sys/systm.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message