int gbfiledesc_open()

in src/gbfiledescript.c [67:76]


int gbfiledesc_open(const char* path, int flags)
{
#ifdef WIN32
    (void)path;
    (void)flags;
    return 0;
#else
    return open(path, flags);
#endif
}