diff options
author | Andrew Cagney <cagney@redhat.com> | 2001-03-14 16:42:30 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2001-03-14 16:42:30 +0000 |
commit | 5bb367b1d911e5893a504ebd2ac301f55cd3ec79 (patch) | |
tree | 59ab5aed48339cc88c8792a7741b007f46346d5b /gdb/ch-exp.c | |
parent | 0eee5820aa0f68b2283b40f5a3fb09aefcfb1575 (diff) | |
download | gdb-5bb367b1d911e5893a504ebd2ac301f55cd3ec79.zip gdb-5bb367b1d911e5893a504ebd2ac301f55cd3ec79.tar.gz gdb-5bb367b1d911e5893a504ebd2ac301f55cd3ec79.tar.bz2 |
Eliminate some uses of __STDC__.
Diffstat (limited to 'gdb/ch-exp.c')
-rw-r--r-- | gdb/ch-exp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/ch-exp.c b/gdb/ch-exp.c index c29e7b0..abd51878 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 |