summaryrefslogtreecommitdiff
path: root/src/puzzles/puzzle.h
diff options
context:
space:
mode:
authorphysick <mynameisgennadiy@vk.com>2026-07-28 20:29:45 +0500
committerphysick <mynameisgennadiy@vk.com>2026-07-28 20:33:20 +0500
commit7237c999918e44e2e76a6d2e2ae37ea709af08f6 (patch)
treef15f39c2ba4092bd3bf7fd7b8548c51535ee3940 /src/puzzles/puzzle.h
parent48faa910496b1b3811c2b52f16d5a76f38ca3e48 (diff)
Added wren limiting fork support
Diffstat (limited to 'src/puzzles/puzzle.h')
-rw-r--r--src/puzzles/puzzle.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/puzzles/puzzle.h b/src/puzzles/puzzle.h
index 28ab6ca..4dfd0f8 100644
--- a/src/puzzles/puzzle.h
+++ b/src/puzzles/puzzle.h
@@ -29,7 +29,7 @@ typedef struct {
/// The user submitted code should be evaluated by this point.
/// The entry point should be registered and the absence of the
/// Main method signatire will be concidered an error
-enum PUZZLE_TEST_RESULT RunTest(Test *test, WrenVM *vm);
+enum PUZZLE_TEST_RESULT RunTest(Test *test, WrenVM *vm, size_t max_op);
typedef struct {
char *Name;