summaryrefslogtreecommitdiff
path: root/src/remote.cc
diff options
context:
space:
mode:
authorMaxime Coste <mawww@kakoune.org>2017-11-06 12:45:14 +0800
committerMaxime Coste <mawww@kakoune.org>2017-11-06 12:45:14 +0800
commit2b6c84fc40d75fdc2c7d2ae9d9394fcc4d19c474 (patch)
treeebaae07b3f1c893fc29a634d280185139889e271 /src/remote.cc
parent0a081b9f31e80efae0f3bbf07497a8e673b61eaa (diff)
Add missing include in remote.cc
strerror is defined in <string.h>
Diffstat (limited to 'src/remote.cc')
-rw-r--r--src/remote.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/remote.cc b/src/remote.cc
index f5ab1072..ebd92f72 100644
--- a/src/remote.cc
+++ b/src/remote.cc
@@ -16,6 +16,7 @@
#include <sys/un.h>
#include <sys/wait.h>
#include <unistd.h>
+#include <string.h>
#include <pwd.h>
#include <fcntl.h>