From owner-svn-src-all@freebsd.org Wed Dec 30 05:56:23 2015 Return-Path: Delivered-To: svn-src-all@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 C36BEA55508 for ; Wed, 30 Dec 2015 05:56:23 +0000 (UTC) (envelope-from theraven@FreeBSD.org) Received: from theravensnest.org (theraven.freebsd.your.org [216.14.102.27]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "cloud.theravensnest.org", Issuer "StartCom Class 1 Primary Intermediate Server CA" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 9867C180A; Wed, 30 Dec 2015 05:56:23 +0000 (UTC) (envelope-from theraven@FreeBSD.org) Received: from pc40.home (ABordeaux-259-1-3-200.w92-162.abo.wanadoo.fr [92.162.178.200]) (authenticated bits=0) by theravensnest.org (8.15.2/8.15.2) with ESMTPSA id tBU5uGpg046680 (version=TLSv1 cipher=ECDHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 30 Dec 2015 05:56:19 GMT (envelope-from theraven@FreeBSD.org) X-Authentication-Warning: theravensnest.org: Host ABordeaux-259-1-3-200.w92-162.abo.wanadoo.fr [92.162.178.200] claimed to be pc40.home Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2104\)) Subject: Re: svn commit: r292809 - head/lib/libc/stdio From: David Chisnall In-Reply-To: <20151230102454.P1079@besplex.bde.org> Date: Wed, 30 Dec 2015 06:56:16 +0100 Cc: John Baldwin , Warner Losh , src-committers , svn-src-head@freebsd.org, svn-src-all@freebsd.org, Warner Losh Content-Transfer-Encoding: quoted-printable Message-Id: <12F59E6B-137C-4B53-B86C-E111E512CCFF@FreeBSD.org> References: <201512272304.tBRN4C5D034464@repo.freebsd.org> <41508412.yspAtSoPCD@ralph.baldwin.cx> <2345870.SHMMVrpc1D@ralph.baldwin.cx> <20151230102454.P1079@besplex.bde.org> To: Bruce Evans X-Mailer: Apple Mail (2.2104) X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Dec 2015 05:56:23 -0000 On 30 Dec 2015, at 00:48, Bruce Evans wrote: >=20 > - C++ apparently spells this as both _Alignof() and alignof() after = 2011/03 This is not correct. C++ spells it alignof. C spells it _Alignof, = unless you include , in which case C spells it alignof and = defines _ _alignof_is_defined. On FreeBSD, we define _Alignof in C++ mode, because it=E2=80=99s in the = reserved identifier space and gives us something that works in C and = C++. David