Author: cfinck
Date: Thu Dec 20 01:07:53 2007
New Revision: 31343
URL:
http://svn.reactos.org/svn/reactos?rev=31343&view=rev
Log:
- Fix indentation I accidentally broke
- Update svn:ignore for both affected directories
Modified:
trunk/tools/RosBE/RosBE-Windows/Tools/ (props changed)
trunk/tools/RosBE/Tools/ (props changed)
trunk/tools/RosBE/Tools/scut.c
Propchange: trunk/tools/RosBE/RosBE-Windows/Tools/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Thu Dec 20 01:07:53 2007
@@ -1,7 +1,1 @@
*.exe
-*.sln
-*.ncb
-*.suo
-*.user
-Debug
-Release
Propchange: trunk/tools/RosBE/Tools/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Thu Dec 20 01:07:53 2007
@@ -1,1 +1,7 @@
*.exe
+*.sln
+*.ncb
+*.suo
+*.user
+Debug
+Release
Modified: trunk/tools/RosBE/Tools/scut.c
URL:
http://svn.reactos.org/svn/reactos/trunk/tools/RosBE/Tools/scut.c?rev=31343…
==============================================================================
--- trunk/tools/RosBE/Tools/scut.c (original)
+++ trunk/tools/RosBE/Tools/scut.c Thu Dec 20 01:07:53 2007
@@ -14,23 +14,23 @@
#include <string.h>
#if defined(WIN32)
-# include <direct.h>
-# include <io.h>
-
-# define paccess(path, mode) _access(path, mode)
-# define pchdir(path) _chdir(path)
-# define pgetcwd(buffer, maxlen) _getcwd(buffer, maxlen)
-# define pmkdir(path) _mkdir(path)
-# define pstricmp(str1, str2) _stricmp(str1, str2)
+# include <direct.h>
+# include <io.h>
+
+# define paccess(path, mode) _access(path, mode)
+# define pchdir(path) _chdir(path)
+# define pgetcwd(buffer, maxlen) _getcwd(buffer, maxlen)
+# define pmkdir(path) _mkdir(path)
+# define pstricmp(str1, str2) _stricmp(str1, str2)
#else
-# include <sys/stat.h>
-# include <unistd.h>
-
-# define paccess(path, mode) access(path, mode)
-# define pchdir(path) chdir(path)
-# define pgetcwd(buffer, maxlen) getcwd(buffer, maxlen)
-# define pmkdir(path) mkdir(path, S_IRWXU | S_IRGRP | S_IWGRP | S_IROTH |
S_IWOTH) // chmod rights: 0755
-# define pstricmp(str1, str2) strcasecmp(str1, str2)
+# include <sys/stat.h>
+# include <unistd.h>
+
+# define paccess(path, mode) access(path, mode)
+# define pchdir(path) chdir(path)
+# define pgetcwd(buffer, maxlen) getcwd(buffer, maxlen)
+# define pmkdir(path) mkdir(path, S_IRWXU | S_IRGRP | S_IWGRP | S_IROTH |
S_IWOTH) // chmod rights: 0755
+# define pstricmp(str1, str2) strcasecmp(str1, str2)
#endif