aboutsummaryrefslogtreecommitdiffstats
path: root/wsutil
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2011-04-10 20:51:58 +0000
committerGuy Harris <guy@alum.mit.edu>2011-04-10 20:51:58 +0000
commitf2008e4dd388076f50caa024d1900afa2116b7b9 (patch)
tree1f0a463590750233bd2ff05109859e2cb2b926c5 /wsutil
parent0629b7399aa9fadca7ff892b77836c5e5f5d8567 (diff)
Define ws_statb64 as struct stat *within* the "not Windows" block.
svn path=/trunk/; revision=36546
Diffstat (limited to 'wsutil')
-rw-r--r--wsutil/file_util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/wsutil/file_util.h b/wsutil/file_util.h
index 6289173a7c..65164165c3 100644
--- a/wsutil/file_util.h
+++ b/wsutil/file_util.h
@@ -143,12 +143,12 @@ extern char *getenv_utf8(const char *varname);
#define ws_fstat64 fstat /* AC_SYS_LARGEFILE should make off_t 64-bit */
#define ws_lseek64 lseek /* AC_SYS_LARGEFILE should make off_t 64-bit */
#define O_BINARY 0 /* Win32 needs the O_BINARY flag for open() */
-#endif /* _WIN32 */
/*
* The structure to pass to ws_fstat64().
*/
#define ws_statb64 struct stat
+#endif /* _WIN32 */
/* directory handling */
#define WS_DIR GDir