summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2015-04-09 18:46:03 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2015-04-09 18:46:03 +0200
commitc47c1088602f64a5dc285a5e2165ecd843369266 (patch)
tree834f8e0ef7c8b49cbf96de04b0712528e92e5b34
parenta03b1c53735616f80a565e7c12d963935058537a (diff)
downloadbiruda-c47c1088602f64a5dc285a5e2165ecd843369266.tar.gz
biruda-c47c1088602f64a5dc285a5e2165ecd843369266.tar.bz2
trying to fix microhttpd.h compilation bugs
-rw-r--r--src/webserver.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/webserver.c b/src/webserver.c
index 18d6b61..67c0fad 100644
--- a/src/webserver.c
+++ b/src/webserver.c
@@ -1,10 +1,15 @@
#include "webserver.h"
#include "master.h"
-#include <microhttpd.h>
-
-#include <string.h>
+#include <inttypes.h>
+#include <stdlib.h>
+#include <stdint.h>
#include <stdio.h>
+#include <string.h>
+#include <ctype.h>
+#include <unistd.h>
+
+#include <microhttpd.h>
static struct MHD_Daemon *d;