summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 4fb4301)
raw | patch | inline | side by side (parent: 4fb4301)
author | Florian Forster <octo@collectd.org> | |
Tue, 14 Jul 2015 06:34:52 +0000 (08:34 +0200) | ||
committer | Florian Forster <octo@collectd.org> | |
Tue, 14 Jul 2015 06:34:56 +0000 (08:34 +0200) |
EPEL5 doesn't have it in <limits.h> apparently.
src/utils_latency.c | patch | blob | history |
diff --git a/src/utils_latency.c b/src/utils_latency.c
index d570ab696166b54e47887b4d1f33b8111a8d9197..926159afcebef08407960137fd24a57a88225b1d 100644 (file)
--- a/src/utils_latency.c
+++ b/src/utils_latency.c
#include <math.h>
#include <limits.h>
+#ifndef LLONG_MAX
+# define LLONG_MAX 9223372036854775807LL
+#endif
+
#ifndef HISTOGRAM_NUM_BINS
# define HISTOGRAM_NUM_BINS 1000
#endif