summaryrefslogtreecommitdiff
path: root/src/Fl_System_Driver.cxx
diff options
context:
space:
mode:
authorManolo Gouy <Manolo>2016-04-27 17:25:17 +0000
committerManolo Gouy <Manolo>2016-04-27 17:25:17 +0000
commit5a4d10faeae2870c1a651f3d3c5a9e2a866c37cf (patch)
treec1386d7457786dcb51c56aa91ef1dc06c968b381 /src/Fl_System_Driver.cxx
parentb870641f34b6244c9e45770f045960b9d749caad (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/Fl_System_Driver.cxx')
-rw-r--r--src/Fl_System_Driver.cxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Fl_System_Driver.cxx b/src/Fl_System_Driver.cxx
index ca94789f6..98a099bd8 100644
--- a/src/Fl_System_Driver.cxx
+++ b/src/Fl_System_Driver.cxx
@@ -431,6 +431,9 @@ void Fl_System_Driver::remove_fd(int fd)
// nothing to do, reimplement in driver if needed
}
+FILE *Fl_System_Driver::fopen(const char* f, const char *mode) {
+ return ::fopen(f, mode);
+}
//
// End of "$Id$".