LibC: add math.h with floorl

This commit is contained in:
Bananymous
2023-05-10 22:35:20 +03:00
parent 0d9422ead8
commit 5f89f083a2
3 changed files with 37 additions and 1 deletions

9
libc/include/math.h Normal file
View File

@@ -0,0 +1,9 @@
#pragma once
#include <sys/cdefs.h>
__BEGIN_DECLS
long double floorl(long double);
__END_DECLS