From 5859b98fb810c85bf58229ad1eae70e76ebcf66a Mon Sep 17 00:00:00 2001 From: David Anderson Date: Wed, 19 Mar 2008 18:35:25 +0000 Subject: [PATCH] - win fixes svn path=/trunk/boinc/; revision=14947 --- lib/filesys.C | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/filesys.C b/lib/filesys.C index d4f507a36c..7d8977eb74 100644 --- a/lib/filesys.C +++ b/lib/filesys.C @@ -74,6 +74,9 @@ using std::string; char boinc_failed_file[256]; +#ifdef _WIN32 +#define lstat(x,y) stat(x,y) +#endif // routines for enumerating the entries in a directory int is_file(const char* path) {