From 3f8c768745e85d0e63ba306581710c6dc9db0d65 Mon Sep 17 00:00:00 2001 From: Mark Adler Date: Sun, 4 Dec 2016 16:50:49 -0800 Subject: Fix compile option for when z_size_t needs to be a long long. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure') diff --git a/configure b/configure index f60585b..c4fee2e 100755 --- a/configure +++ b/configure @@ -491,7 +491,7 @@ EOF int main(void) { if (sizeof(void *) <= sizeof(int)) puts("int"); else if (sizeof(void *) <= sizeof(long)) puts("long"); - else puts("long long"); + else puts("z_longlong"); return 0; } EOF -- cgit v1.2.3-55-g6feb