aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorNeil Millstone2007-04-06 18:34:53 +0000
committerNeil Millstone2007-04-06 18:34:53 +0000
commitc6d41c07558eb74a18e88b3fc68c5ec76bb3f9fe (patch)
treed53d35422e0d3d700a48d4f1bca587eb1b7af79d /common
parent40245fe4504ecc7cb26ccfc5b5c7d5d2b15cbbe7 (diff)
downloadscummvm-rg350-c6d41c07558eb74a18e88b3fc68c5ec76bb3f9fe.tar.gz
scummvm-rg350-c6d41c07558eb74a18e88b3fc68c5ec76bb3f9fe.tar.bz2
scummvm-rg350-c6d41c07558eb74a18e88b3fc68c5ec76bb3f9fe.zip
Updating DS port for changes in main codebase. Code changes for DevkitArm r20 and latest libnds.
svn-id: r26394
Diffstat (limited to 'common')
-rw-r--r--common/file.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/common/file.cpp b/common/file.cpp
index af7d227344..9ccfcd85ba 100644
--- a/common/file.cpp
+++ b/common/file.cpp
@@ -70,16 +70,6 @@
//#undef getc
//#undef ferror
- #define FILE void
-
- FILE* std_fopen(const char* name, const char* mode);
- void std_fclose(FILE* handle);
- size_t std_fread(const void* ptr, size_t size, size_t numItems, FILE* handle);
- size_t std_fwrite(const void* ptr, size_t size, size_t numItems, FILE* handle);
- bool std_feof(FILE* handle);
- long int std_ftell(FILE* handle);
- int std_fseek(FILE* handle, long int offset, int whence);
- void std_clearerr(FILE* handle);
//void std_fprintf(FILE* handle, const char* fmt, ...); // used in common/util.cpp
//void std_fflush(FILE* handle); // used in common/util.cpp