shithub: MicroHs

Download patch

ref: a29aeb7b470b51a212e225b7fe2d5233533b0269
parent: b86cea518fe9eeede43c2619c715684566e718bb
author: Lennart Augustsson <lennart.augustsson@epicgames.com>
date: Mon Nov 13 09:55:59 EST 2023

Mingsw fixes

--- a/src/runtime/eval.c
+++ b/src/runtime/eval.c
@@ -454,7 +454,7 @@
   int k;                        /* will contain bit pos + 1 */
   for(;;) {
     heapoffs_t word = free_map[i];
-    k = ffsl(word);
+    k = FFS(word);
     if (k)
       break;
     i++;
--