From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Jason Rumney Newsgroups: gmane.emacs.devel,gmane.emacs.pretest.bugs Subject: Re: 23.0.50; dbus Date: Mon, 10 Dec 2007 12:47:26 +0000 Message-ID: <475D355E.8090303@gnu.org> References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1197290872 31778 80.91.229.12 (10 Dec 2007 12:47:52 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 10 Dec 2007 12:47:52 +0000 (UTC) Cc: emacs-pretest-bug@gnu.org To: William Xu Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Dec 10 13:48:02 2007 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1J1i3G-00080o-HS for ged-emacs-devel@m.gmane.org; Mon, 10 Dec 2007 13:48:02 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1J1i2y-0001hP-VY for ged-emacs-devel@m.gmane.org; Mon, 10 Dec 2007 07:47:44 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1J1i2v-0001hK-Vg for emacs-devel@gnu.org; Mon, 10 Dec 2007 07:47:42 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1J1i2t-0001h6-VP for emacs-devel@gnu.org; Mon, 10 Dec 2007 07:47:41 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1J1i2t-0001h2-QH for emacs-devel@gnu.org; Mon, 10 Dec 2007 07:47:39 -0500 Original-Received: from fencepost.gnu.org ([140.186.70.10]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1J1i2t-0001iH-Jk for emacs-devel@gnu.org; Mon, 10 Dec 2007 07:47:39 -0500 Original-Received: from mx10.gnu.org ([199.232.76.166]) by fencepost.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1J1i2t-0004YH-6I for emacs-pretest-bug@gnu.org; Mon, 10 Dec 2007 07:47:39 -0500 Original-Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1J1i2p-0001hl-QL for emacs-pretest-bug@gnu.org; Mon, 10 Dec 2007 07:47:39 -0500 Original-Received: from mk-outboundfilter-3-a-1.mail.uk.tiscali.com ([212.74.114.7]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1J1i2p-0001hR-FH for emacs-pretest-bug@gnu.org; Mon, 10 Dec 2007 07:47:35 -0500 Original-X-Trace: 16099/mk-outboundfilter-1.mail.uk.tiscali.com/F2S/$MX-ACCEPTED/freedom2surf-infrastructure/194.106.33.237 X-SBRS: None X-RemoteIP: 194.106.33.237 X-IP-MAIL-FROM: jasonr@gnu.org X-IP-BHB: Once X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Ao8CANfDXEfCaiHt/2dsb2JhbAA Original-Received: from outmail1.freedom2surf.net ([194.106.33.237]) by smtp.f2s.tiscali.co.uk with ESMTP; 10 Dec 2007 12:47:34 +0000 Original-Received: from [192.168.249.28] (i-83-67-23-108.freedom2surf.net [83.67.23.108]) by outmail1.freedom2surf.net (Postfix) with ESMTP id C942750085; Mon, 10 Dec 2007 12:47:33 +0000 (GMT) User-Agent: Thunderbird 2.0.0.9 (Windows/20071031) In-Reply-To: X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. X-detected-kernel: by monty-python.gnu.org: Linux 2.6, seldom 2.4 (older, 4) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:84954 gmane.emacs.pretest.bugs:20438 Archived-At: William Xu wrote: > Seems it's defined here: /usr/include/sys/types.h > > ,---- > | typedef unsigned int uint; /* Sys V compatibility */ > `---- > Right, but the comment in the glibc include suggests that the name is non-standard, and there only for compatibility: *#ifdef __USE_MISC* /* Old compatibility names for C types. */ *typedef* *unsigned* *long* *int* ulong; *typedef* *unsigned* *short* *int* ushort; *typedef* *unsigned* *int* uint; *#endif* With other compilers, this definition may not exist, so the code should be changed.