Add CMath library + ensure it builds, links, and runs

This commit is contained in:
2025-04-29 11:13:22 +02:00
parent 4814c6e7c2
commit d41f72280a
12 changed files with 98 additions and 3 deletions

View File

@@ -0,0 +1,9 @@
module CMath {
header "include/add_nums.h"
header "include/sub_nums.h"
header "include/mul_nums.h"
header "include/div_nums.h"
header "include/spc_nums.h"
export *
link "cmath"
}