From 7a172be6213839a3d023ba21c3bafd7540a4bfe8 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Mon, 31 Mar 2025 02:11:03 -0400 Subject: Remove threads and mutexed data from the language in favor of a module-based approach --- src/stdlib/optionals.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/stdlib/optionals.c') diff --git a/src/stdlib/optionals.c b/src/stdlib/optionals.c index db2c477f..797cb111 100644 --- a/src/stdlib/optionals.c +++ b/src/stdlib/optionals.c @@ -1,7 +1,5 @@ // Optional types -#include - #include "bools.h" #include "bytes.h" #include "datatypes.h" @@ -10,7 +8,6 @@ #include "nums.h" #include "patterns.h" #include "text.h" -#include "threads.h" #include "util.h" public PUREFUNC bool is_none(const void *obj, const TypeInfo_t *non_optional_type) -- cgit v1.2.3