aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2025-03-04 23:28:19 +0100
committerdec05eba <dec05eba@protonmail.com>2025-03-04 23:28:19 +0100
commitcf9955dbc35e8e3bb9ac8febbec76cfecd7e739b (patch)
treeb2e0b2237c63f4aea27d2e23d61fbbbcd76d1b47 /src/main.cpp
parent3003cf04c015a3a847a5d598e3a3b0521ff6bdf9 (diff)
Convert to meson project
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp
index ef0568b..b09cf14 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -1,8 +1,10 @@
#include "../include/QuickMedia.hpp"
#include <locale.h>
+#include <malloc.h>
int main(int argc, char **argv) {
setlocale(LC_ALL, "C"); // Sigh... stupid C
+ // mallopt(M_MMAP_THRESHOLD, 65536);
QuickMedia::Program program;
return program.run(argc, argv);
}