RFA: Fix signbit() for 16-bit targets

DJ Delorie dj@redhat.com
Tue May 12 22:53:00 GMT 2015


> -  return (w & 0x80000000);
> +  return (w & 0x80000000) != 0;

Also 0x80000000 -> 0x80000000UL ?



More information about the Newlib mailing list