src/utils_latency.c: Ensure that LLONG_MAX is defined.
authorFlorian Forster <octo@collectd.org>
Tue, 14 Jul 2015 06:34:52 +0000 (08:34 +0200)
committerMarc Fournier <marc.fournier@camptocamp.com>
Thu, 14 Jan 2016 10:06:35 +0000 (11:06 +0100)
EPEL5 doesn't have it in <limits.h> apparently.

src/utils_latency.c

index 62f8171..f987266 100644 (file)
 #include <math.h>
 #include <limits.h>
 
+#ifndef LLONG_MAX
+# define LLONG_MAX 9223372036854775807LL
+#endif
+
 #ifndef HISTOGRAM_NUM_BINS
 # define HISTOGRAM_NUM_BINS 1000
 #endif