diff options
author | Kostas Nakos | 2007-10-28 19:14:12 +0000 |
---|---|---|
committer | Kostas Nakos | 2007-10-28 19:14:12 +0000 |
commit | 1fcbeda5fe8e7cda4397f27917aa5b5feb75f09a (patch) | |
tree | 175e73e6bc4d3c2db7b3b76137b43e56c8869d42 /backends/platform/wince/missing/sys | |
parent | 0c532c28f6e86e1d7d8eb479da1e9b90f3983bb2 (diff) | |
download | scummvm-rg350-1fcbeda5fe8e7cda4397f27917aa5b5feb75f09a.tar.gz scummvm-rg350-1fcbeda5fe8e7cda4397f27917aa5b5feb75f09a.tar.bz2 scummvm-rg350-1fcbeda5fe8e7cda4397f27917aa5b5feb75f09a.zip |
various assorted things required by the new compiler and codebase changes
svn-id: r29310
Diffstat (limited to 'backends/platform/wince/missing/sys')
-rw-r--r-- | backends/platform/wince/missing/sys/stat.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/backends/platform/wince/missing/sys/stat.h b/backends/platform/wince/missing/sys/stat.h index d9eef1318d..8f5bda59e1 100644 --- a/backends/platform/wince/missing/sys/stat.h +++ b/backends/platform/wince/missing/sys/stat.h @@ -2,6 +2,7 @@ #include <sys/types.h> +#ifndef __MINGW32CE__ struct stat { _dev_t st_dev; _ino_t st_ino; @@ -16,8 +17,9 @@ struct stat { time_t st_ctime; }; +int stat(const char *, struct stat *); + +#endif #define _S_IFDIR 0040000 /* directory */ #define S_IFDIR _S_IFDIR - -int stat(const char *, struct stat *); |