Fix compile option for when z_size_t needs to be a long long.

This commit is contained in:
Mark Adler
2016-12-04 16:50:49 -08:00
parent ca50ebd4df
commit 3f8c768745
4 changed files with 7 additions and 1 deletions

2
configure vendored
View File

@@ -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