diff options
| author | Manolo Gouy <Manolo> | 2016-04-27 17:25:17 +0000 |
|---|---|---|
| committer | Manolo Gouy <Manolo> | 2016-04-27 17:25:17 +0000 |
| commit | 5a4d10faeae2870c1a651f3d3c5a9e2a866c37cf (patch) | |
| tree | c1386d7457786dcb51c56aa91ef1dc06c968b381 /src/drivers/Posix | |
| parent | b870641f34b6244c9e45770f045960b9d749caad (diff) | |
Use standard fopen() as default implementation of virtual Fl_System_Driver::fopen()
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11706 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/drivers/Posix')
| -rw-r--r-- | src/drivers/Posix/Fl_Posix_System_Driver.H | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/drivers/Posix/Fl_Posix_System_Driver.H b/src/drivers/Posix/Fl_Posix_System_Driver.H index e23a0b94b..fb33d9e9e 100644 --- a/src/drivers/Posix/Fl_Posix_System_Driver.H +++ b/src/drivers/Posix/Fl_Posix_System_Driver.H @@ -54,7 +54,6 @@ public: } virtual char *getenv(const char *v) { return ::getenv(v); } virtual int putenv(char* v) {return ::putenv(v);} - virtual FILE *fopen(const char* f, const char *mode) {return ::fopen(f, mode);} virtual int system(const char* cmd) {return ::system(cmd);} virtual int execvp(const char *file, char *const *argv) {return ::execvp(file, argv);} virtual int chmod(const char* f, int mode) {return ::chmod(f, mode);} |
