# HG changeset patch # User Paul Eggert # Date 1111859624 0 # Node ID 0f74bcd32a20247105709acb74cc31b06f1f1826 # Parent cb318fac9b20b2fa0c3b81c1706bc7e4a8cafce4 one's complement -> ones' complement (as per Knuth) diff --git a/lib/intprops.h b/lib/intprops.h --- 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)