[Scummvm-cvs-logs] SF.net SVN: scummvm:[38736] scummvm/trunk/engines/sci/engine/kfile.cpp

sev at users.sourceforge.net sev at users.sourceforge.net
Sat Feb 21 20:35:30 CET 2009


Revision: 38736
          http://scummvm.svn.sourceforge.net/scummvm/?rev=38736&view=rev
Author:   sev
Date:     2009-02-21 19:35:30 +0000 (Sat, 21 Feb 2009)

Log Message:
-----------
Fix compilation by implicit including of sys/stat.h

Modified Paths:
--------------
    scummvm/trunk/engines/sci/engine/kfile.cpp

Modified: scummvm/trunk/engines/sci/engine/kfile.cpp
===================================================================
--- scummvm/trunk/engines/sci/engine/kfile.cpp	2009-02-21 19:33:01 UTC (rev 38735)
+++ scummvm/trunk/engines/sci/engine/kfile.cpp	2009-02-21 19:35:30 UTC (rev 38736)
@@ -24,7 +24,6 @@
  */
 
 #ifdef WIN32
-#  include <sys/stat.h>		// for S_IREAD/S_IWRITE
 #  include <windows.h>
 #elif defined (__DC__)
 #  include <dc.h>
@@ -37,6 +36,7 @@
 #include "sci/sci.h"
 
 #include <errno.h>
+#include <sys/stat.h>		// for S_IREAD/S_IWRITE
 
 namespace Sci {
 


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list