summaryrefslogtreecommitdiff
path: root/src/interfaces/ecpg/lib
diff options
context:
space:
mode:
authorMichael Meskes2001-04-05 08:21:14 +0000
committerMichael Meskes2001-04-05 08:21:14 +0000
commit495fe1214c62974427b594e3732cc613a951ee11 (patch)
tree9886dcf507be56cc98899bd260cd9f52d5931517 /src/interfaces/ecpg/lib
parent3ced3cfff98e68a206aeb56ccc7cb1154bdaacb6 (diff)
Hopefully fixed the long long problem.
Diffstat (limited to 'src/interfaces/ecpg/lib')
-rw-r--r--src/interfaces/ecpg/lib/typename.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/lib/typename.c b/src/interfaces/ecpg/lib/typename.c
index 78c2665ed8f..a27aea47438 100644
--- a/src/interfaces/ecpg/lib/typename.c
+++ b/src/interfaces/ecpg/lib/typename.c
@@ -31,12 +31,10 @@ ECPGtype_name(enum ECPGttype typ)
return "long";
case ECPGt_unsigned_long:
return "unsigned long";
-#ifdef HAVE_LONG_LONG_INT_64
case ECPGt_long_long:
return "long long";
case ECPGt_unsigned_long_long:
return "unsigned long long";
-#endif /* HAVE_LONG_LONG_INT_64 */
case ECPGt_float:
return "float";
case ECPGt_double: