X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fcollectd.h;h=4079ad1f2872c4d70aa708f0c523b3aed1f517fb;hb=5bc766bce29ca069432f1f5a92d3ac328001d14a;hp=6faa1a4e0486c7b0ff5c9d47d89746c89c37525f;hpb=65dba471769a4e69bc505c758015ffdfb76a6053;p=collectd.git diff --git a/src/collectd.h b/src/collectd.h index 6faa1a4e..4079ad1f 100644 --- a/src/collectd.h +++ b/src/collectd.h @@ -97,6 +97,12 @@ # define assert(...) /* nop */ #endif +#if !defined(HAVE__BOOL) || !HAVE__BOOL +typedef int _Bool; +# undef HAVE__BOOL +# define HAVE__BOOL 1 +#endif + #if NAN_STATIC_DEFAULT # include /* #endif NAN_STATIC_DEFAULT*/ @@ -212,10 +218,6 @@ # include #endif -#if HAVE_SENSORS_SENSORS_H -# include -#endif - #ifndef PACKAGE_NAME #define PACKAGE_NAME "collectd" #endif @@ -283,8 +285,11 @@ # endif #endif -extern char hostname_g[]; -extern int interval_g; -extern int timeout_g; +/* Type for time as used by "utils_time.h" */ +typedef uint64_t cdtime_t; + +extern char hostname_g[]; +extern cdtime_t interval_g; +extern int timeout_g; #endif /* COLLECTD_H */