11 lines
242 B
C
11 lines
242 B
C
#ifndef _RRDTOOL_H_
|
|
#define _RRDTOOL_H_
|
|
|
|
#ifdef WITH_RRD
|
|
void rrd_submit(char *hostname, char *plugin, char *filename, int ds_id, char *data);
|
|
#else
|
|
#define rrd_submit(hostname, plugin, filename, ds_id, data)
|
|
#endif
|
|
|
|
#endif /* _RRDTOOL_H_ */
|