diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-03-31 02:11:03 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-03-31 02:11:03 -0400 |
| commit | 7a172be6213839a3d023ba21c3bafd7540a4bfe8 (patch) | |
| tree | 5646ba0e4c0690fe64711fb77658308541de695b /src/stdlib/optionals.c | |
| parent | d3655740cc6a8e6c4788946af412065fb52f51dc (diff) | |
Remove threads and mutexed data from the language in favor of a
module-based approach
Diffstat (limited to 'src/stdlib/optionals.c')
| -rw-r--r-- | src/stdlib/optionals.c | 3 |
1 files changed, 0 insertions, 3 deletions
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 <pthread.h> - #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) |
