From: Gerrit Renker Date: Sun, 23 May 2010 05:43:04 +0000 (+0200) Subject: string: constant value X-Git-Tag: v0.4.3~20^2~2^2 X-Git-Url: http://git.tuebingen.mpg.de/?a=commitdiff_plain;h=13bcca2442dea6c5782f6281dc48dce3a86e1281;hp=13bcca2442dea6c5782f6281dc48dce3a86e1281;p=paraslash.git string: constant value This replaces the LLONG_MAX constant with the value stolen from limits.h (that value is only accessible when using -std=c99). The value of 2^63-1 assumes 64-bit and can also be computed as (1ULL << (sizeof(long long) * 8 - 1)) - 1). ---