summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJoel Klinghed <the_jk@yahoo.com>2017-02-28 22:17:01 +0100
committerJoel Klinghed <the_jk@yahoo.com>2017-02-28 22:17:01 +0100
commite17f02543886c8c4bd8472984457de23035b34c6 (patch)
tree5b7aff8db5113e630f23cfaa5c031215e2c58c04 /src
parentc029d90d1975e124d237605f1edb2be16bd05b5d (diff)
Add missing includes
Diffstat (limited to 'src')
-rw-r--r--src/looper.cc1
-rw-r--r--src/proxy.cc1
-rw-r--r--src/resolver.hh1
3 files changed, 3 insertions, 0 deletions
diff --git a/src/looper.cc b/src/looper.cc
index 0da851b..669885e 100644
--- a/src/looper.cc
+++ b/src/looper.cc
@@ -2,6 +2,7 @@
#include "common.hh"
+#include <cerrno>
#include <list>
#include <poll.h>
#include <vector>
diff --git a/src/proxy.cc b/src/proxy.cc
index fcd02f6..a567dcc 100644
--- a/src/proxy.cc
+++ b/src/proxy.cc
@@ -6,6 +6,7 @@
#define _GNU_SOURCE
#endif
+#include <cerrno>
#include <chrono>
#include <cstring>
#include <fcntl.h>
diff --git a/src/resolver.hh b/src/resolver.hh
index d98458f..856f561 100644
--- a/src/resolver.hh
+++ b/src/resolver.hh
@@ -4,6 +4,7 @@
#define RESOLVER_HH
#include <functional>
+#include <string>
class Looper;