summaryrefslogtreecommitdiff
path: root/gdb/ch-exp.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2001-03-14 16:42:30 +0000
committerAndrew Cagney <cagney@redhat.com>2001-03-14 16:42:30 +0000
commit12a0b3121fb01cbad192a2ec28b4de4943fcd097 (patch)
tree3c8af0455985b8f62c05851f52681c01f6c1555a /gdb/ch-exp.c
parent5dd800b1ff3fa35d97a48489b5b64724f8377da6 (diff)
downloadgdb-12a0b3121fb01cbad192a2ec28b4de4943fcd097.tar.gz
Eliminate some uses of __STDC__.
Diffstat (limited to 'gdb/ch-exp.c')
-rw-r--r--gdb/ch-exp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/ch-exp.c b/gdb/ch-exp.c
index c29e7b0799d..abd51878c28 100644
--- a/gdb/ch-exp.c
+++ b/gdb/ch-exp.c
@@ -1788,7 +1788,7 @@ match_integer_literal (void)
else
{
yylval.typed_val.val = ival;
-#if defined(CC_HAS_LONG_LONG) && defined(__STDC__)
+#if defined(CC_HAS_LONG_LONG)
if (ival > (LONGEST) 2147483647U || ival < -(LONGEST) 2147483648U)
yylval.typed_val.type = builtin_type_long_long;
else