summaryrefslogtreecommitdiff
path: root/soltools
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-11-14 09:48:42 +0000
committerCaolán McNamara <caolanm@redhat.com>2011-11-14 09:48:42 +0000
commitff6af93716bca3956b46e1c5940d4fdb92ceb7eb (patch)
tree9a36f5650a0b12ff34decd6fe3d4c40bddca9d6a /soltools
parent74500c21a462ed6555bcbdc2a68cbc632ac68329 (diff)
this S390 ifdef isn't a contemporary one
Diffstat (limited to 'soltools')
-rw-r--r--soltools/cpp/_lex.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/soltools/cpp/_lex.c b/soltools/cpp/_lex.c
index 32f8cdfcadf6..a707007031be 100644
--- a/soltools/cpp/_lex.c
+++ b/soltools/cpp/_lex.c
@@ -264,12 +264,8 @@ void
continue;
case C_ALPH:
for (j = 0; j < 256; j++)
-#ifdef S390
- if( isalpha( j ) || (j == '_') )
-#else
if (('a' <= j && j <= 'z') || ('A' <= j && j <= 'Z')
|| j == '_')
-#endif
bigfsm[j][fp->state] = (short) nstate;
continue;
case C_NUM: