From 078e21a1feb811f9ef7797ce3ee5d2e8ffcccfce Mon Sep 17 00:00:00 2001 From: nasr Date: Fri, 17 Apr 2026 17:49:10 +0200 Subject: feature(main): during my work on other projects I improved the base library a bit. this is a drag and drop of that in the project. the next steps exit out of implementing lineair regression and attempting to calcualte what the value would be of a key in the btree... Signed-off-by: nasr feature(main): during my work on other projects I improved the base library a bit. this is a drag and drop of that in the project. the next steps exit out of implementing lineair regression and attempting to calcualte what the value would be of a key in the btree... Signed-off-by: nasr --- source/base/base_include.h | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) (limited to 'source/base/base_include.h') diff --git a/source/base/base_include.h b/source/base/base_include.h index c8eec41..a376f29 100755 --- a/source/base/base_include.h +++ b/source/base/base_include.h @@ -9,26 +9,30 @@ #include #include #include +#include #include +#include +#include #include "base.h" #include "base_mem.h" + #include "base_arena.h" #include "base_stack.h" -#include "base_string.h" - -#include "base_io.h" -#include "base_error.h" -#include "base_test.h" - -#ifdef BASE_UNITY +#ifdef BASE_IMPLEMENTATION #include "base_arena.c" -#include "base_stack.c" - #endif + +#include "base_string.h" +#include "base_string.c" + #include "base_os.h" +#include "base_error.h" + +#include "base_rand.h" + #endif -- cgit v1.3