fix _WIN32 build (there is no <err.h>)

This commit is contained in:
=
2015-08-06 12:07:08 -07:00
parent 46fae61c69
commit f750275cf9

View File

@@ -22,8 +22,7 @@ subject to the following restrictions:
#include "../CommonInterfaces/CommonGUIHelperInterface.h"
#include "SharedMemoryCommon.h"
#include <signal.h>
#include <err.h>
#include <stdlib.h>
@@ -31,6 +30,8 @@ static SharedMemoryCommon* example = NULL;
static bool interrupted = false;
#ifndef _WIN32
#include <signal.h>
#include <err.h>
#include <unistd.h>
static void cleanup(int signo)
{