utils_*.h: Made header files self-hosting.
authorSebastian Harl <sh@tokkee.org>
Wed, 29 Oct 2008 17:56:21 +0000 (18:56 +0100)
committerFlorian Forster <octo@leeloo.lan.home.verplant.org>
Sun, 2 Nov 2008 13:26:00 +0000 (14:26 +0100)
Added (hopefully) all missing includes.

src/utils_cmd_flush.h
src/utils_cmd_getval.h
src/utils_cmd_listval.h
src/utils_cmd_putnotif.h
src/utils_cmd_putval.h
src/utils_dns.h
src/utils_rrdcreate.h

index dccafd1..6b54ace 100644 (file)
@@ -22,6 +22,8 @@
 #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 */
index 86134cd..ed9ca9a 100644 (file)
@@ -22,6 +22,8 @@
 #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 */
index 73146e7..0c72d67 100644 (file)
@@ -22,6 +22,8 @@
 #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 */
index 8d5475b..7e900b5 100644 (file)
@@ -22,6 +22,8 @@
 #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 : */
index 9ba52cc..8460b13 100644 (file)
@@ -22,6 +22,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 */
index b3f08ac..efc7903 100644 (file)
@@ -36,6 +36,7 @@
 #include "config.h"
 
 #include <arpa/nameser.h>
+#include <stdint.h>
 
 #if HAVE_PCAP_H
 # include <pcap.h>
index 6208a6f..935e4e0 100644 (file)
 #ifndef UTILS_RRDCREATE_H
 #define UTILS_RRDCREATE_H 1
 
+#include "plugin.h"
+
+#include <stddef.h>
+
 struct rrdcreate_config_s
 {
   int    stepsize;