diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2005-03-26 17:55:05 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2005-03-26 17:55:05 +0000 |
commit | 608c26a8fcba6553d21944754f7b1487fbc0cbeb (patch) | |
tree | 084418b4c5edaa0dd2b9d4653a4f64f7c129def0 | |
parent | e049d578cded3550d49c3f81b295f909624d5444 (diff) | |
download | coreutils-608c26a8fcba6553d21944754f7b1487fbc0cbeb.tar.xz |
one's complement -> ones' complement
-rw-r--r-- | lib/intprops.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/intprops.h b/lib/intprops.h index 409e0f1d4..d36c182f4 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) |