From owner-freebsd-hackers@FreeBSD.ORG Tue Feb 17 06:22:28 2004 Return-Path: Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 008DA16A4CE for ; Tue, 17 Feb 2004 06:22:28 -0800 (PST) Received: from salmon.maths.tcd.ie (salmon.maths.tcd.ie [134.226.81.11]) by mx1.FreeBSD.org (Postfix) with SMTP id 3B34443D1D for ; Tue, 17 Feb 2004 06:22:27 -0800 (PST) (envelope-from dwmalone@maths.tcd.ie) Received: from walton.maths.tcd.ie by salmon.maths.tcd.ie with SMTP id ; 17 Feb 2004 14:22:26 +0000 (GMT) Date: Tue, 17 Feb 2004 14:22:26 +0000 From: David Malone To: Mikulas Patocka Message-ID: <20040217142225.GA83796@walton.maths.tcd.ie> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.3i Sender: dwmalone@maths.tcd.ie cc: freebsd-hackers@freebsd.org Subject: Re: signed char bug in regexp library X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Feb 2004 14:22:28 -0000 On Mon, Feb 16, 2004 at 08:50:39PM +0100, Mikulas Patocka wrote: > When i compile library with -funsigned-char, it works fine. But it isn't > compiled with that flag in FreeBSD. The signedness of chars is left as a choice for the compiler - on the platform you are working on they must have decided to use signed chars. David.