fssh_open
#define open fssh_open
extern int fssh_open(const char *pathname, int oflags, ...);
int fd = fssh_open(path, openMode);
int fd = fssh_open(path, FSSH_O_RDONLY | FSSH_O_NOTRAVERSE);
int fd = fssh_open(path, FSSH_O_RDONLY | FSSH_O_NOTRAVERSE);
file = fssh_open(path, FSSH_O_RDONLY);
file = fssh_open(driverName, FSSH_O_RDONLY);
file = fssh_open(path, FSSH_O_RDONLY);
return fssh_open(path, FSSH_O_WRONLY | FSSH_O_CREAT | FSSH_O_TRUNC, mode);
int fd = fssh_open(partition, FSSH_O_RDWR);