aboutsummaryrefslogtreecommitdiff
path: root/backends/gp32/stat.h
diff options
context:
space:
mode:
authorJonathan Gray2002-12-02 02:45:07 +0000
committerJonathan Gray2002-12-02 02:45:07 +0000
commit2961f75365e216e413ed73030ce213eba50c80a5 (patch)
tree6e033a362811d45eb00e6205e4fc2ab00d8d04c2 /backends/gp32/stat.h
parentf4e438b4ce3cb10df531d3b60345c1cb046efeef (diff)
downloadscummvm-rg350-2961f75365e216e413ed73030ce213eba50c80a5.tar.gz
scummvm-rg350-2961f75365e216e413ed73030ce213eba50c80a5.tar.bz2
scummvm-rg350-2961f75365e216e413ed73030ce213eba50c80a5.zip
remove gp32 files until license issues are sorted out
svn-id: r5812
Diffstat (limited to 'backends/gp32/stat.h')
-rw-r--r--backends/gp32/stat.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/backends/gp32/stat.h b/backends/gp32/stat.h
deleted file mode 100644
index d9eef1318d..0000000000
--- a/backends/gp32/stat.h
+++ /dev/null
@@ -1,23 +0,0 @@
-/* Header is not present in Windows CE SDK */
-
-#include <sys/types.h>
-
-struct stat {
- _dev_t st_dev;
- _ino_t st_ino;
- unsigned short st_mode;
- short st_nlink;
- short st_uid;
- short st_gid;
- _dev_t st_rdev;
- _off_t st_size;
- time_t st_atime;
- time_t st_mtime;
- time_t st_ctime;
-};
-
-
-#define _S_IFDIR 0040000 /* directory */
-#define S_IFDIR _S_IFDIR
-
-int stat(const char *, struct stat *);