]> git.tuebingen.mpg.de Git - paraslash.git/commit
string: constant value
authorGerrit Renker <grenker@cscs.ch>
Sun, 23 May 2010 05:43:04 +0000 (07:43 +0200)
committerAndre Noll <maan@systemlinux.org>
Sun, 23 May 2010 06:34:24 +0000 (08:34 +0200)
commit13bcca2442dea6c5782f6281dc48dce3a86e1281
tree571e2aa423f57c30e0fb1951ad91cf347c058ef2
parenta924e1306eaef8444cd5f3b1ed010bca4bcb3f98
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).
string.c