diff options
author | dec05eba <dec05eba@protonmail.com> | 2025-03-04 23:28:19 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2025-03-04 23:28:19 +0100 |
commit | cf9955dbc35e8e3bb9ac8febbec76cfecd7e739b (patch) | |
tree | b2e0b2237c63f4aea27d2e23d61fbbbcd76d1b47 /src/main.cpp | |
parent | 3003cf04c015a3a847a5d598e3a3b0521ff6bdf9 (diff) |
Convert to meson project
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 2 |
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); } |