aboutsummaryrefslogtreecommitdiff
path: root/src/cyn_file_linux.c
blob: ff0c1c243a6a760b6d0e0b776c9f4a011cfbae04 (plain)
1
2
3
4
5
6
7
8
9
File_Handle *cyn_file_open(String path, File_Status *status) {
    UNUSED(path);

    if (status != NULL) {
        *status = CYN_FILE_ERROR;
    }

    return NULL;
}