Added (hopefully) all missing includes.
#ifndef UTILS_CMD_FLUSH_H
#define UTILS_CMD_FLUSH_H 1
+#include <stdio.h>
+
int handle_flush (FILE *fh, char *buffer);
#endif /* UTILS_CMD_FLUSH_H */
#ifndef UTILS_CMD_GETVAL_H
#define UTILS_CMD_GETVAL_H 1
+#include <stdio.h>
+
int handle_getval (FILE *fh, char *buffer);
#endif /* UTILS_CMD_GETVAL_H */
#ifndef UTILS_CMD_LISTVAL_H
#define UTILS_CMD_LISTVAL_H 1
+#include <stdio.h>
+
int handle_listval (FILE *fh, char *buffer);
#endif /* UTILS_CMD_LISTVAL_H */
#ifndef UTILS_CMD_PUTNOTIF_H
#define UTILS_CMD_PUTNOTIF_H 1
+#include <stdio.h>
+
int handle_putnotif (FILE *fh, char *buffer);
/* vim: set shiftwidth=2 softtabstop=2 tabstop=8 : */
#ifndef UTILS_CMD_PUTVAL_H
#define UTILS_CMD_PUTVAL_H 1
+#include <stdio.h>
+
int handle_putval (FILE *fh, char *buffer);
#endif /* UTILS_CMD_PUTVAL_H */
#include "config.h"
#include <arpa/nameser.h>
+#include <stdint.h>
#if HAVE_PCAP_H
# include <pcap.h>
#ifndef UTILS_RRDCREATE_H
#define UTILS_RRDCREATE_H 1
+#include "plugin.h"
+
+#include <stddef.h>
+
struct rrdcreate_config_s
{
int stepsize;