//Displayed Error message in eclipse cdt.
- Syntax error - candidate is: - no matching function for call to ‘BufferIO::open(const char*&, int)’
//BufferIO::BufferIO(const char* filename) {
// trying to open a a file
if( (mfile = int open(filename, O_RDONLY | O_DIRECT)) == -1) {
STDERR("opening file failed");
}
}