From 22a00a0cd2ec99009f439944e71d9f44f29c36ff Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Mon, 14 Oct 2002 08:06:33 +0000 Subject: [PATCH] (b4_int_type): Use yysigned_char instead of signed char, for portability to K&R hosts. Fix typo: signed char is guaranteed only to 127, not to 128. --- data/c.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/c.m4 b/data/c.m4 index 417ccd21..a60c2d8f 100644 --- a/data/c.m4 +++ b/data/c.m4 @@ -65,7 +65,7 @@ m4_define([b4_ints_in], # MIN to MAX (included). m4_define([b4_int_type], [m4_if(b4_ints_in($@, [0], [255]), [1], [unsigned char], - b4_ints_in($@, [-128], [128]), [1], [signed char], + b4_ints_in($@, [-128], [127]), [1], [yysigned_char], b4_ints_in($@, [0], [65535]), [1], [unsigned short], b4_ints_in($@, [-32768], [32767]), [1], [short], -- 2.50.0