summaryrefslogtreecommitdiff
path: root/pit/src/main.c
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2026-09-01 06:26:13 -0400
committerLLLL Colonq <llll@colonq>2026-09-01 06:26:13 -0400
commitff7407c146b8129c2f1cc7ebe3b5771ad2f5dfdd (patch)
treebc70d9773ebc0deb25773d3b5c86ec7ea96eef6d /pit/src/main.c
parent6ebac820c84b218a45368eeaf1c853ff9c9d638f (diff)
pit: Fix evaluatorHEADmaster
Diffstat (limited to 'pit/src/main.c')
-rw-r--r--pit/src/main.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/pit/src/main.c b/pit/src/main.c
index af759b6..74c2f03 100644
--- a/pit/src/main.c
+++ b/pit/src/main.c
@@ -7,11 +7,8 @@
#include <lcq/pit/runtime.h>
#include <lcq/pit/library.h>
-typedef char *mystr;
-PIT_DECLARE_HASHTABLE(mystr, double)
-
int main(int argc, char **argv) {
- i64 sz = 256 * 1024 * 1024;
+ i64 sz = 4 * 1024 * 1024;
u8 *buf = malloc((size_t) sz);
pit_runtime *rt = pit_runtime_new(buf, sz);
pit_install_library_essential(rt);