diff options
Diffstat (limited to 'src/cyn_file_std.c')
-rw-r--r-- | src/cyn_file_std.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/cyn_file_std.c b/src/cyn_file_std.c new file mode 100644 index 0000000..3106818 --- /dev/null +++ b/src/cyn_file_std.c @@ -0,0 +1,10 @@ + +File_Handle *cyn_file_open(String path, File_Status *status) { + UNUSED(path); + + if (status != NULL) { + *status = CYN_FILE_ERROR; + } + + return NULL; +} |