Commit 587bd83c authored by David Reid's avatar David Reid

Update fs and fix some build errors with `-std=c89`.

parent b7e5451e
This source diff could not be displayed because it is too large. You can view the blob instead.
This diff is collapsed.
#include "../../external/fs/fs.c" /* <-- Must come first due to some (hopefully temporary) hacks to work around some `-std=c89` errors. */
#include "../../miniaudio.c"
#include "../../external/fs/fs.c"
#include <stdio.h>
......@@ -43,7 +43,7 @@ int ma_run_tests(int argc, char** argv)
ma_bool32 hasError = MA_FALSE;
size_t iTest;
fs_mkdir(NULL, TEST_OUTPUT_DIR);
fs_mkdir(NULL, TEST_OUTPUT_DIR, FS_IGNORE_MOUNTS);
for (iTest = 0; iTest < g_Tests.count; iTest += 1) {
printf("=== BEGIN %s ===\n", g_Tests.pTests[iTest].pName);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment