fix for time.h on Windows
This commit is contained in:
parent
c1c9923892
commit
daf7994c1c
1 changed files with 5 additions and 0 deletions
|
@ -3,7 +3,12 @@
|
|||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#if defined( __CYGWIN__ ) || defined( __CYGWIN32__ ) || defined( _MSC_VER )
|
||||
#include <winsock2.h>
|
||||
#else
|
||||
#include <sys/time.h>
|
||||
#endif
|
||||
|
||||
#include "runway.hxx"
|
||||
#include "object.hxx"
|
||||
|
|
Loading…
Add table
Reference in a new issue