aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
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