summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: ea78b1c)
raw | patch | inline | side by side (parent: ea78b1c)
author | Sebastian Harl <sh@tokkee.org> | |
Wed, 29 Oct 2008 17:56:21 +0000 (18:56 +0100) | ||
committer | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Sun, 2 Nov 2008 13:26:00 +0000 (14:26 +0100) |
Added (hopefully) all missing includes.
diff --git a/src/utils_cmd_flush.h b/src/utils_cmd_flush.h
index dccafd1534255307701d030a82b706cbbacf797d..6b54acecaa30f26307e1e51504a388e4b09f831e 100644 (file)
--- a/src/utils_cmd_flush.h
+++ b/src/utils_cmd_flush.h
#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 */
diff --git a/src/utils_cmd_getval.h b/src/utils_cmd_getval.h
index 86134cdf9a19b1e542662352161a8e51c35bad9f..ed9ca9a345d2592421548a85908ecde141100212 100644 (file)
--- a/src/utils_cmd_getval.h
+++ b/src/utils_cmd_getval.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 */
index 73146e785b6b4bd6cd854871fc1f333549c994da..0c72d678a46f6d69a9c3b652a800fd36a1e25da8 100644 (file)
--- a/src/utils_cmd_listval.h
+++ b/src/utils_cmd_listval.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 */
index 8d5475b92fc3b75ccd20c28e84b873ebb00fe79a..7e900b509f7010cf4bc90d093140a287d044dd60 100644 (file)
--- a/src/utils_cmd_putnotif.h
+++ b/src/utils_cmd_putnotif.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 : */
diff --git a/src/utils_cmd_putval.h b/src/utils_cmd_putval.h
index 9ba52cc8d80f8a98b54dfaf25755179e9594849a..8460b13388488be5c1401a3ff23a57a3d6e4f4bb 100644 (file)
--- a/src/utils_cmd_putval.h
+++ b/src/utils_cmd_putval.h
#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 */
diff --git a/src/utils_dns.h b/src/utils_dns.h
index b3f08acdafb2b95ae53d8786ad503c7d0b4e30df..efc790319cebea5e3253cad748de71d4e8923aaa 100644 (file)
--- a/src/utils_dns.h
+++ b/src/utils_dns.h
#include "config.h"
#include <arpa/nameser.h>
+#include <stdint.h>
#if HAVE_PCAP_H
# include <pcap.h>
diff --git a/src/utils_rrdcreate.h b/src/utils_rrdcreate.h
index 6208a6fcd362e258689a38d711e333ae3f7850df..935e4e0783dd7710640cb97869c45a7711d8f782 100644 (file)
--- a/src/utils_rrdcreate.h
+++ b/src/utils_rrdcreate.h
#ifndef UTILS_RRDCREATE_H
#define UTILS_RRDCREATE_H 1
+#include "plugin.h"
+
+#include <stddef.h>
+
struct rrdcreate_config_s
{
int stepsize;