From 76e2b79b15d1cfe4af3d77e343960ed8f0399f15 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Guillem=20Aleny=C3=A0=20Ribas?= <galenya@iri.upc.edu>
Date: Mon, 6 Oct 2014 13:21:40 +0000
Subject: [PATCH] move unistd include from cpp to h

---
 src/comm.cpp | 1 -
 src/comm.h   | 1 +
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/comm.cpp b/src/comm.cpp
index 51c8dc8..27fb269 100644
--- a/src/comm.cpp
+++ b/src/comm.cpp
@@ -1,5 +1,4 @@
 #include <string.h>
-#include <unistd.h>
 #include <sys/select.h>
 #include <sys/ioctl.h>
 #include "comm.h"
diff --git a/src/comm.h b/src/comm.h
index 6346018..5a52adc 100644
--- a/src/comm.h
+++ b/src/comm.h
@@ -1,6 +1,7 @@
 #ifndef _COMM_H
 #define _COMM_H
 
+#include <unistd.h>
 #include <list>
 #include "eventserver.h"
 #include "threadserver.h"
-- 
GitLab