diff options
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 *); |