summaryrefslogtreecommitdiff
path: root/lib/mktime.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2005-03-26 18:08:24 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2005-03-26 18:08:24 +0000
commit5bb064a2615010ba9a787983739220705f892795 (patch)
tree561e1f80bce861231ccc71bbb9007e589d6a4df3 /lib/mktime.c
parent759ae5e688aaf90730e801a2d8c41ab8d2f36eb7 (diff)
downloadcoreutils-5bb064a2615010ba9a787983739220705f892795.tar.xz
Propagate intprops.h comment fixes to mktime.c and strftime.c.
Diffstat (limited to 'lib/mktime.c')
-rw-r--r--lib/mktime.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/mktime.c b/lib/mktime.c
index 300607c4b..916bdbd3e 100644
--- a/lib/mktime.c
+++ b/lib/mktime.c
@@ -68,9 +68,9 @@
an integer. */
#define TYPE_IS_INTEGER(t) ((t) 1.5 == 1)
-/* True if negative values of the signed integer type T use twos
- complement, ones complement, or signed magnitude representation,
- respectively. Much GNU code assumes twos complement, but some
+/* True if negative values of the signed integer type T use two's
+ 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)
#define TYPE_ONES_COMPLEMENT(t) ((t) ~ (t) 0 == 0)