X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fstrtol.c;h=25e2e4d43eca1edf9740a12dfb8b7158b4db7ab9;hb=f53990f35803666791f4163e0f9d206bd8c4690e;hp=eed62c4a5cbe6fa6aab428c8be07ef2040c70934;hpb=e04879ec01e63d163237521896132f1c1ca57ba0;p=gnulib.git diff --git a/lib/strtol.c b/lib/strtol.c index eed62c4a5..25e2e4d43 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)