summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Sommerseth <dazo@users.sourceforge.net>2009-09-02 14:11:49 +0200
committerDavid Sommerseth <dazo@users.sourceforge.net>2009-09-02 14:11:49 +0200
commit8461cb6c3df7dc9390b877dff416d979630359c2 (patch)
treea1b5e8e9e7dea89c38c9cc5eae9ca5e8f9fb60f1
parent05418bf005850846b69c0c055b7f81d25add3732 (diff)
downloadeurephia-8461cb6c3df7dc9390b877dff416d979630359c2.tar.gz
eurephia-8461cb6c3df7dc9390b877dff416d979630359c2.tar.xz
eurephia-8461cb6c3df7dc9390b877dff416d979630359c2.zip
Added missing #include statements
-rw-r--r--common/eurephia_context.h1
-rw-r--r--database/sqlite/edb-sqlite.c1
-rw-r--r--database/sqlite/sqlite.c1
-rw-r--r--plugin/eurephia.c1
-rw-r--r--plugin/firewall/eurephiafw.c1
5 files changed, 5 insertions, 0 deletions
diff --git a/common/eurephia_context.h b/common/eurephia_context.h
index e2bc2ce..b91d1a6 100644
--- a/common/eurephia_context.h
+++ b/common/eurephia_context.h
@@ -25,6 +25,7 @@
#ifndef EUREPHIASTRUCT_H_
#define EUREPHIASTRUCT_H_
+#include <stdio.h>
#include "eurephiadb_struct.h"
#define ECTX_NO_PRIVILEGES 0x1000
diff --git a/database/sqlite/edb-sqlite.c b/database/sqlite/edb-sqlite.c
index 30959e1..4a4e3fc 100644
--- a/database/sqlite/edb-sqlite.c
+++ b/database/sqlite/edb-sqlite.c
@@ -21,6 +21,7 @@
*/
#include <stdio.h>
+#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <assert.h>
diff --git a/database/sqlite/sqlite.c b/database/sqlite/sqlite.c
index dfb56a6..5ec761f 100644
--- a/database/sqlite/sqlite.c
+++ b/database/sqlite/sqlite.c
@@ -20,6 +20,7 @@
*/
#include <string.h>
+#include <stdlib.h>
#include <assert.h>
#include <sqlite3.h>
diff --git a/plugin/eurephia.c b/plugin/eurephia.c
index 93b1b62..c22471c 100644
--- a/plugin/eurephia.c
+++ b/plugin/eurephia.c
@@ -20,6 +20,7 @@
*/
#include <stdio.h>
+#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include <getopt.h>
diff --git a/plugin/firewall/eurephiafw.c b/plugin/firewall/eurephiafw.c
index 1dab652..e57f7cc 100644
--- a/plugin/firewall/eurephiafw.c
+++ b/plugin/firewall/eurephiafw.c
@@ -20,6 +20,7 @@
*/
#include <stdio.h>
+#include <stdlib.h>
#include <string.h>
#include <dlfcn.h>
#include <errno.h>