summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Volz <andreas.volz@tux-style.com>2016-09-24 11:03:56 +0200
committerGitHub <noreply@github.com>2016-09-24 11:03:56 +0200
commite3455d20fc0b6e00bce7668fbd9b165fdc8a7040 (patch)
treeffb4fb544277354b01749dbcd49cab56ef955e70
parent39720279656d37bd12f731166524e3b8cb736b0d (diff)
parent463f5a4400d494b831c3b3348c0a21f0faf14f39 (diff)
downloaddbus-c++-e3455d20fc0b6e00bce7668fbd9b165fdc8a7040.tar.gz
Merge pull request #2 from yurivict/master
Fixed undefined ssize_t for clang-3.8.0 on FreeBSD.
-rw-r--r--include/dbus-c++/pipe.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/dbus-c++/pipe.h b/include/dbus-c++/pipe.h
index 999f042..682646c 100644
--- a/include/dbus-c++/pipe.h
+++ b/include/dbus-c++/pipe.h
@@ -30,6 +30,8 @@
/* STD */
#include <cstdlib>
+#include <sys/types.h>
+
namespace DBus
{