Browse Source

Catch also Fl_Posix_System_Driver after rename stat -> flstat in Fl_System_Driver

pull/430/head
ManoloFLTK 3 years ago
parent
commit
2ee27e39db
  1. 2
      src/drivers/Posix/Fl_Posix_System_Driver.H

2
src/drivers/Posix/Fl_Posix_System_Driver.H

@ -57,7 +57,7 @@ public: @@ -57,7 +57,7 @@ public:
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);}
virtual int access(const char* f, int mode) { return ::access(f, mode);}
virtual int stat(const char* f, struct stat *b) { return ::stat(f, b);}
virtual int flstat(const char* f, struct stat *b) { return ::stat(f, b);}
virtual char *getcwd(char* b, int l) {return ::getcwd(b, l);}
virtual int chdir(const char* path) {return ::chdir(path);}
virtual int unlink(const char* f) {return ::unlink(f);}

Loading…
Cancel
Save