LibC: add math.h with floorl

This commit is contained in:
2023-05-10 22:35:20 +03:00
parent 13fabcc1f1
commit ac12132ac0
3 changed files with 37 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.26)
project(libc CXX)
project(libc CXX ASM)
set(LIBC_SOURCES
ctype.cpp
@@ -10,6 +10,7 @@ set(LIBC_SOURCES
stdlib.cpp
string.cpp
unistd.cpp
math.S
)
add_custom_target(libc-headers