From 167f44bb415e88c0cb250ababdd8a101573d632d Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Sat, 2 Apr 2005 03:54:44 +0000 Subject: [PATCH] Fix spellings in comment. --- lib/strtol.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/strtol.c b/lib/strtol.c index eed62c4a5c..25e2e4d43e 100644 --- a/lib/strtol.c +++ b/lib/strtol.c @@ -127,9 +127,9 @@ extern int errno; /* The extra casts in the following macros work around compiler bugs, e.g., in Cray C 5.0.3.0. */ -/* 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) -- 2.30.2