X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fintprops.h;h=65280b159f49a79785931cf97952c1cb2b171d93;hb=5131be5b019b1110cd597012b63e48886aaaafc7;hp=409e0f1d4d41a5dae388907f9f14cacedd0d2099;hpb=d6913e92bfd13a918b19223fb676e9c0f136400e;p=gnulib.git diff --git a/lib/intprops.h b/lib/intprops.h index 409e0f1d4..65280b159 100644 --- a/lib/intprops.h +++ b/lib/intprops.h @@ -14,7 +14,7 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, - Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ /* Written by Paul Eggert. */ @@ -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)