Subject: Re: build error in icmp6.c
To: None <current-users@netbsd.org>
From: Christos Zoulas <christos@zoulas.com>
List: current-users
Date: 06/13/2000 15:14:56
In article <200006131457.AAA13379@balrog.supp.cpr.itg.telecom.com.au>,
Simon Burge <simonb@netbsd.org> wrote:
> 
> Would something like:
> 
> 	if ((signed char)a[0] < 0 || (signed char)b[0] < 0)
> 
> work?

So that we don't depend on "signed"

(a[0] | b[0]) & 0x80

with an appropriate comment, of course.

christos