Add debugging sandbox for the purpose of debugging miniaudio.

This commit is contained in:
David Reid
2025-02-22 09:44:03 +10:00
parent 2e054f8011
commit deafb7e96f
2 changed files with 17 additions and 4 deletions
+10
View File
@@ -0,0 +1,10 @@
/* This is just a sandbox for debugging miniaudio. Do not run this as part of some automated testing process. */
#include "../../miniaudio.c"
int main(int argc, char** argv)
{
(void)argc;
(void)argv;
return 0;
}