Problem: removing header from testutil.hpp breaks unittest build with gcc8

Solution: include unistd.h in unittest_poller.cpp
This commit is contained in:
Luca Boccassi 2019-03-24 11:37:41 +00:00
parent 6d77558c77
commit dc91981df7

View File

@ -26,6 +26,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include <unity.h>
#ifndef _WIN32
#include <unistd.h>
#define closesocket close
#endif