summaryrefslogtreecommitdiff
path: root/fastjar/jartool.h
diff options
context:
space:
mode:
authorkcook <kcook@138bc75d-0d04-0410-961f-82ee72b054a4>2004-06-25 23:06:47 +0000
committerkcook <kcook@138bc75d-0d04-0410-961f-82ee72b054a4>2004-06-25 23:06:47 +0000
commit1be81b41d958d2574646506c85f867795a776e31 (patch)
treebd96fba36398427def6ded793beecf15bf59a3f8 /fastjar/jartool.h
parent776af4c5cd28996ebd898da0457c62ea5e0ef9cc (diff)
downloadgcc-1be81b41d958d2574646506c85f867795a776e31.tar.gz
2004-06-25 Kelley Cook <kcook@gcc.gnu.org>
PR other/15194 * configure.ac: Add check for long long. * jartool.h: Check for long long before using it. * configure: Regenerate * config.h.in: Regenerate. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@83690 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'fastjar/jartool.h')
-rw-r--r--fastjar/jartool.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fastjar/jartool.h b/fastjar/jartool.h
index 573f1517047..e0aed6523b4 100644
--- a/fastjar/jartool.h
+++ b/fastjar/jartool.h
@@ -90,7 +90,7 @@ typedef u_int16_t ub2;
typedef unsigned int ub4;
#elif SIZEOF_LONG == 4
typedef unsigned long ub4;
-#elif SIZEOF_LONG_LONG == 4
+#elif defined(HAVE_LONG_LONG) && SIZEOF_LONG_LONG == 4
typedef unsigned long long ub4;
#else
typedef u_int32_t ub4;