mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-05 15:18:49 +00:00
big: Add workaround for DLL globals bug.
This commit is contained in:
@@ -26,7 +26,9 @@ PyRes :: struct {
|
||||
|
||||
@export test_initialize_constants :: proc "c" () -> (res: u64) {
|
||||
context = runtime.default_context();
|
||||
return u64(initialize_constants());
|
||||
res = u64(initialize_constants());
|
||||
//assert(MUL_KARATSUBA_CUTOFF >= 40);
|
||||
return res;
|
||||
}
|
||||
|
||||
@export test_error_string :: proc "c" (err: Error) -> (res: cstring) {
|
||||
|
||||
Reference in New Issue
Block a user