synaesthesia: fix compilation on windows

Fix compilation under MSVC due to references to headers
that are not available with the MS SDKs.
Fixes #578524
This commit is contained in:
David Hoyt 2009-04-14 19:16:46 +02:00 committed by Wim Taymans
parent ef31993f34
commit 3743c83ace

View file

@ -28,12 +28,16 @@
#include <pthread.h>
#include <dirent.h>
#include <sys/stat.h>
#ifndef _MSC_VER
#include <sys/time.h>
#include <time.h>
#endif
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#ifndef _MSC_VER
#include <unistd.h>
#endif
#include <string.h>
#include <assert.h>