From owner-svn-src-head@freebsd.org Wed Dec 9 08:19:43 2015 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1FA559C1547; Wed, 9 Dec 2015 08:19:43 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: from mail-oi0-x229.google.com (mail-oi0-x229.google.com [IPv6:2607:f8b0:4003:c06::229]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E160E1DB8; Wed, 9 Dec 2015 08:19:42 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: by oiww189 with SMTP id w189so22911812oiw.3; Wed, 09 Dec 2015 00:19:42 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=content-type:mime-version:subject:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to; bh=Y4Ko5+AOXquKIMhzLV5Dqa/bjKKxY3lrlDNXEOBxFco=; b=KS07oZR+aLnpUnVbM/MLj4aJet2ZRc6sx+NZhVUnjnsKtpbAsNNBv0hPKwo4AvLlqz VSjntN8N5dcR0UsI8ubivYv4Y+kVLzuUJOkF7KCELDwe0V8/IBSfJKT7pps6Nb5bNn+R HSuxIHL9KbVQyY+n102TLZGDQn8/aiqpW9bg56L1OVgBbADwodDM4ZbCEuWOtZbdUDPz K6Rk34iTzsaAubXH9h6cVq6MEy17eopOUMPjm25jHO3+gMCN88oMKQ9bu19Ia0kZvBGF KiiEhMk9NI6G+9OQwBOQhLtcV47LJqqrdnPoLVrR6r/fPRIARPY1vNZXErDWcVCfuKgt fmew== X-Received: by 10.202.214.131 with SMTP id n125mr2766094oig.104.1449649182214; Wed, 09 Dec 2015 00:19:42 -0800 (PST) Received: from [100.83.241.107] ([172.56.7.104]) by smtp.gmail.com with ESMTPSA id s7sm3152709obk.17.2015.12.09.00.19.40 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 09 Dec 2015 00:19:40 -0800 (PST) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (1.0) Subject: Re: svn commit: r292004 - head/lib/libc/stdio From: Garrett Cooper X-Mailer: iPhone Mail (13B143) In-Reply-To: <20151209181941.U828@besplex.bde.org> Date: Wed, 9 Dec 2015 00:19:39 -0800 Cc: Garrett Cooper , src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Content-Transfer-Encoding: 7bit Message-Id: <4643B6B1-FF2F-4D76-B2E8-9DDF3E81E844@gmail.com> References: <201512082247.tB8MlsCA089831@repo.freebsd.org> <20151209181941.U828@besplex.bde.org> To: Bruce Evans X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Dec 2015 08:19:43 -0000 > On Dec 8, 2015, at 23:23, Bruce Evans wrote: > >> On Tue, 8 Dec 2015, Garrett Cooper wrote: >> >> Author: ngie >> ... >> >> Log: >> Fix compilation when -DDEBUG is defined by adding inttypes.h #include >> for intmax_t > > Wrong include. intmax_t is declared in . declares > much more and is usually only needed for functions like strtoimax(). > also declares PRI* and SCN*, but those are only needed in > the garbage. Whups... You're right >.<..