From 6ff96c3d63dd30da2a38e390e800f3e91f5ebcc7 Mon Sep 17 00:00:00 2001 From: Richard Ore Date: Wed, 16 Oct 2024 15:58:14 +0100 Subject: [PATCH] update thread --- src/standard/thread.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/standard/thread.c b/src/standard/thread.c index 64b1e960..b458e5f7 100644 --- a/src/standard/thread.c +++ b/src/standard/thread.c @@ -1,7 +1,5 @@ #include "module.h" #include -#include -#include #ifdef __linux__ #include @@ -26,6 +24,9 @@ #endif #endif +#include +#include + typedef struct { pthread_t thread; b_vm *vm;