rrd_getopt.h parsetime.h \
rrd_format.h rrd_tool.h rrd_xport.h rrd.h rrd_rpncalc.h \
rrd_hw.h rrd_hw_math.h rrd_hw_update.h \
- rrd_nan_inf.h fnv.h rrd_graph.h \
+ fnv.h rrd_graph.h \
rrd_is_thread_safe.h
noinst_LTLIBRARIES = librrdupd.la
#include <time.h>
#include <stdio.h> /* for FILE */
+
+/* Formerly rrd_nan_inf.h */
+#ifndef DNAN
+# define DNAN set_to_DNAN()
+#endif
+
+#ifndef DINF
+# define DINF set_to_DINF()
+#endif
+double set_to_DNAN(void);
+double set_to_DINF(void);
+/* end of rrd_nan_inf.h */
+
/* Transplanted from rrd_format.h */
typedef double rrd_value_t; /* the data storage type is
* double */
+++ /dev/null
-#define DNAN set_to_DNAN()
-#define DINF set_to_DINF()
-
-double set_to_DNAN(
- void);
-double set_to_DINF(
- void);