From: Paul Eggert Date: Sat, 26 Mar 2005 17:55:05 +0000 (+0000) Subject: one's complement -> ones' complement X-Git-Tag: CPPI-1_12~1214 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=608c26a8fcba6553d21944754f7b1487fbc0cbeb;p=thirdparty%2Fcoreutils.git one's complement -> ones' complement --- diff --git a/lib/intprops.h b/lib/intprops.h index 409e0f1d4d..d36c182f40 100644 --- a/lib/intprops.h +++ b/lib/intprops.h @@ -28,7 +28,7 @@ #define TYPE_IS_INTEGER(t) ((t) 1.5 == 1) /* True if negative values of the signed integer type T use two's - complement, one's complement, or signed magnitude representation, + complement, ones' complement, or signed magnitude representation, respectively. Much GNU code assumes two's complement, but some people like to be portable to all possible C hosts. */ #define TYPE_TWOS_COMPLEMENT(t) ((t) ~ (t) 0 == (t) -1)