loader: Use _alloca instead of alloca on Windows
diff --git a/loader/loader_platform.h b/loader/loader_platform.h
index a7bd0c6..693a3dc 100644
--- a/loader/loader_platform.h
+++ b/loader/loader_platform.h
@@ -198,6 +198,10 @@
// "CMakeLists.txt" file).
#define snprintf _snprintf
#define PRINTF_SIZE_T_SPECIFIER "%Iu"
+
+// Microsoft doesn't implement alloca, instead we have _alloca
+#define alloca _alloca
+
// Microsoft also doesn't have basename(). Paths are different on Windows, and
// so this is just a temporary solution in order to get us compiling, so that we
// can test some scenarios, and develop the correct solution for Windows.