Skip to content

Commit

Permalink
Fix build on Windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
hokein committed Sep 16, 2016
1 parent 7749942 commit 55262d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/greenworks_utils.cc
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@

#include "greenworks_utils.h"

#include <iostream>
#include <fstream>
#include <iostream>
#include <sstream>
#include <sys/stat.h>

#if defined(_WIN32)
#include <sys/utime.h>
#include <windows.h>
#else
#include <sys/stat.h>
#include <unistd.h>
#include <utime.h>
#endif
Expand Down

0 comments on commit 55262d4

Please sign in to comment.