diff --git a/Userspace/apps/test/libc_test/Makefile b/Userspace/apps/test/libc_test/Makefile
new file mode 100644
index 00000000..13dee6ab
--- /dev/null
+++ b/Userspace/apps/test/libc_test/Makefile
@@ -0,0 +1,36 @@
+default:
+ $(error Do not run this Makefile directly!)
+
+S_SOURCES = $(shell find ./ -type f -name '*.S')
+C_SOURCES = $(shell find ./ -type f -name '*.c')
+CXX_SOURCES = $(shell find ./ -type f -name '*.cpp')
+
+OBJ = $(S_SOURCES:.S=.o) $(C_SOURCES:.c=.o) $(CXX_SOURCES:.cpp=.o)
+
+FILENAME = $(notdir $(shell pwd))
+WARNCFLAG = -Wall -Wextra
+
+build: $(FILENAME).elf
+ cp $(FILENAME).elf $(WORKSPACE_DIR)/out/bin/$(FILENAME)
+
+# Use static linking
+LDFLAGS += -static -fno-pic -fno-pie -Wl,-static
+
+$(FILENAME).elf: $(OBJ)
+ $(info Linking $@)
+ $(CC) $(LDFLAGS) $(SYSROOT) $(OBJ) -o $@
+
+%.o: %.c $(HEADERS)
+ $(info Compiling $<)
+ $(CC) $(CFLAGS) $(WARNCFLAG) -std=c17 -c $< -o $@
+
+%.o: %.cpp $(HEADERS)
+ $(info Compiling $<)
+ $(CXX) $(CFLAGS) $(WARNCFLAG) -std=c++20 -fexceptions -c $< -o $@ -fno-rtti
+
+%.o: %.S
+ $(info Compiling $<)
+ $(AS) -o $@ $<
+
+clean:
+ rm -f $(OBJ) $(FILENAME).elf
diff --git a/Userspace/apps/test/libc_test/assert/assert.c b/Userspace/apps/test/libc_test/assert/assert.c
new file mode 100644
index 00000000..b45aee69
--- /dev/null
+++ b/Userspace/apps/test/libc_test/assert/assert.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/dirent/alphasort.c b/Userspace/apps/test/libc_test/dirent/alphasort.c
new file mode 100644
index 00000000..dc794ee6
--- /dev/null
+++ b/Userspace/apps/test/libc_test/dirent/alphasort.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/dirent/closedir.c b/Userspace/apps/test/libc_test/dirent/closedir.c
new file mode 100644
index 00000000..dc794ee6
--- /dev/null
+++ b/Userspace/apps/test/libc_test/dirent/closedir.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/dirent/dirfd.c b/Userspace/apps/test/libc_test/dirent/dirfd.c
new file mode 100644
index 00000000..dc794ee6
--- /dev/null
+++ b/Userspace/apps/test/libc_test/dirent/dirfd.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/dirent/fdopendir.c b/Userspace/apps/test/libc_test/dirent/fdopendir.c
new file mode 100644
index 00000000..dc794ee6
--- /dev/null
+++ b/Userspace/apps/test/libc_test/dirent/fdopendir.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/dirent/opendir.c b/Userspace/apps/test/libc_test/dirent/opendir.c
new file mode 100644
index 00000000..dc794ee6
--- /dev/null
+++ b/Userspace/apps/test/libc_test/dirent/opendir.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/dirent/posix_getdents.c b/Userspace/apps/test/libc_test/dirent/posix_getdents.c
new file mode 100644
index 00000000..dc794ee6
--- /dev/null
+++ b/Userspace/apps/test/libc_test/dirent/posix_getdents.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/dirent/readdir.c b/Userspace/apps/test/libc_test/dirent/readdir.c
new file mode 100644
index 00000000..dc794ee6
--- /dev/null
+++ b/Userspace/apps/test/libc_test/dirent/readdir.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/dirent/readdir_r.c b/Userspace/apps/test/libc_test/dirent/readdir_r.c
new file mode 100644
index 00000000..dc794ee6
--- /dev/null
+++ b/Userspace/apps/test/libc_test/dirent/readdir_r.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/dirent/rewinddir.c b/Userspace/apps/test/libc_test/dirent/rewinddir.c
new file mode 100644
index 00000000..dc794ee6
--- /dev/null
+++ b/Userspace/apps/test/libc_test/dirent/rewinddir.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/dirent/scandir.c b/Userspace/apps/test/libc_test/dirent/scandir.c
new file mode 100644
index 00000000..dc794ee6
--- /dev/null
+++ b/Userspace/apps/test/libc_test/dirent/scandir.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/dirent/seekdir.c b/Userspace/apps/test/libc_test/dirent/seekdir.c
new file mode 100644
index 00000000..dc794ee6
--- /dev/null
+++ b/Userspace/apps/test/libc_test/dirent/seekdir.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/dirent/telldir.c b/Userspace/apps/test/libc_test/dirent/telldir.c
new file mode 100644
index 00000000..dc794ee6
--- /dev/null
+++ b/Userspace/apps/test/libc_test/dirent/telldir.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/errno/__errno_location.c b/Userspace/apps/test/libc_test/errno/__errno_location.c
new file mode 100644
index 00000000..46aa93b8
--- /dev/null
+++ b/Userspace/apps/test/libc_test/errno/__errno_location.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/errno/strerror.c b/Userspace/apps/test/libc_test/errno/strerror.c
new file mode 100644
index 00000000..46aa93b8
--- /dev/null
+++ b/Userspace/apps/test/libc_test/errno/strerror.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/fcntl/creat.c b/Userspace/apps/test/libc_test/fcntl/creat.c
new file mode 100644
index 00000000..fdaa111c
--- /dev/null
+++ b/Userspace/apps/test/libc_test/fcntl/creat.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/fcntl/fcntl.c b/Userspace/apps/test/libc_test/fcntl/fcntl.c
new file mode 100644
index 00000000..fdaa111c
--- /dev/null
+++ b/Userspace/apps/test/libc_test/fcntl/fcntl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/fcntl/open.c b/Userspace/apps/test/libc_test/fcntl/open.c
new file mode 100644
index 00000000..fdaa111c
--- /dev/null
+++ b/Userspace/apps/test/libc_test/fcntl/open.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/fcntl/openat.c b/Userspace/apps/test/libc_test/fcntl/openat.c
new file mode 100644
index 00000000..fdaa111c
--- /dev/null
+++ b/Userspace/apps/test/libc_test/fcntl/openat.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/fcntl/posix_fadvise.c b/Userspace/apps/test/libc_test/fcntl/posix_fadvise.c
new file mode 100644
index 00000000..fdaa111c
--- /dev/null
+++ b/Userspace/apps/test/libc_test/fcntl/posix_fadvise.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/fcntl/posix_fallocate.c b/Userspace/apps/test/libc_test/fcntl/posix_fallocate.c
new file mode 100644
index 00000000..fdaa111c
--- /dev/null
+++ b/Userspace/apps/test/libc_test/fcntl/posix_fallocate.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/locale/duplocale.c b/Userspace/apps/test/libc_test/locale/duplocale.c
new file mode 100644
index 00000000..c04d36c2
--- /dev/null
+++ b/Userspace/apps/test/libc_test/locale/duplocale.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/locale/freelocale.c b/Userspace/apps/test/libc_test/locale/freelocale.c
new file mode 100644
index 00000000..c04d36c2
--- /dev/null
+++ b/Userspace/apps/test/libc_test/locale/freelocale.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/locale/getlocalename_l.c b/Userspace/apps/test/libc_test/locale/getlocalename_l.c
new file mode 100644
index 00000000..c04d36c2
--- /dev/null
+++ b/Userspace/apps/test/libc_test/locale/getlocalename_l.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/locale/localeconv.c b/Userspace/apps/test/libc_test/locale/localeconv.c
new file mode 100644
index 00000000..c04d36c2
--- /dev/null
+++ b/Userspace/apps/test/libc_test/locale/localeconv.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/locale/newlocale.c b/Userspace/apps/test/libc_test/locale/newlocale.c
new file mode 100644
index 00000000..c04d36c2
--- /dev/null
+++ b/Userspace/apps/test/libc_test/locale/newlocale.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/locale/setlocale.c b/Userspace/apps/test/libc_test/locale/setlocale.c
new file mode 100644
index 00000000..c04d36c2
--- /dev/null
+++ b/Userspace/apps/test/libc_test/locale/setlocale.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/locale/uselocale.c b/Userspace/apps/test/libc_test/locale/uselocale.c
new file mode 100644
index 00000000..c04d36c2
--- /dev/null
+++ b/Userspace/apps/test/libc_test/locale/uselocale.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/main.c b/Userspace/apps/test/libc_test/main.c
new file mode 100644
index 00000000..a02ea96c
--- /dev/null
+++ b/Userspace/apps/test/libc_test/main.c
@@ -0,0 +1,20 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+int main(int argc, char *argv[])
+{
+}
diff --git a/Userspace/apps/test/libc_test/math/acos.c b/Userspace/apps/test/libc_test/math/acos.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/acos.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/acosf.c b/Userspace/apps/test/libc_test/math/acosf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/acosf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/acosh.c b/Userspace/apps/test/libc_test/math/acosh.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/acosh.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/acoshf.c b/Userspace/apps/test/libc_test/math/acoshf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/acoshf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/acoshl.c b/Userspace/apps/test/libc_test/math/acoshl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/acoshl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/acosl.c b/Userspace/apps/test/libc_test/math/acosl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/acosl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/asin.c b/Userspace/apps/test/libc_test/math/asin.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/asin.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/asinf.c b/Userspace/apps/test/libc_test/math/asinf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/asinf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/asinh.c b/Userspace/apps/test/libc_test/math/asinh.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/asinh.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/asinhf.c b/Userspace/apps/test/libc_test/math/asinhf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/asinhf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/asinhl.c b/Userspace/apps/test/libc_test/math/asinhl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/asinhl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/asinl.c b/Userspace/apps/test/libc_test/math/asinl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/asinl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/atan.c b/Userspace/apps/test/libc_test/math/atan.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/atan.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/atan2.c b/Userspace/apps/test/libc_test/math/atan2.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/atan2.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/atan2f.c b/Userspace/apps/test/libc_test/math/atan2f.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/atan2f.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/atan2l.c b/Userspace/apps/test/libc_test/math/atan2l.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/atan2l.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/atanf.c b/Userspace/apps/test/libc_test/math/atanf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/atanf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/atanh.c b/Userspace/apps/test/libc_test/math/atanh.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/atanh.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/atanhf.c b/Userspace/apps/test/libc_test/math/atanhf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/atanhf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/atanhl.c b/Userspace/apps/test/libc_test/math/atanhl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/atanhl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/atanl.c b/Userspace/apps/test/libc_test/math/atanl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/atanl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/cbrt.c b/Userspace/apps/test/libc_test/math/cbrt.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/cbrt.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/cbrtf.c b/Userspace/apps/test/libc_test/math/cbrtf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/cbrtf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/cbrtl.c b/Userspace/apps/test/libc_test/math/cbrtl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/cbrtl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/ceil.c b/Userspace/apps/test/libc_test/math/ceil.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/ceil.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/ceilf.c b/Userspace/apps/test/libc_test/math/ceilf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/ceilf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/ceill.c b/Userspace/apps/test/libc_test/math/ceill.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/ceill.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/copysign.c b/Userspace/apps/test/libc_test/math/copysign.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/copysign.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/copysignf.c b/Userspace/apps/test/libc_test/math/copysignf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/copysignf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/copysignl.c b/Userspace/apps/test/libc_test/math/copysignl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/copysignl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/cos.c b/Userspace/apps/test/libc_test/math/cos.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/cos.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/cosf.c b/Userspace/apps/test/libc_test/math/cosf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/cosf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/cosh.c b/Userspace/apps/test/libc_test/math/cosh.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/cosh.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/coshf.c b/Userspace/apps/test/libc_test/math/coshf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/coshf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/coshl.c b/Userspace/apps/test/libc_test/math/coshl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/coshl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/cosl.c b/Userspace/apps/test/libc_test/math/cosl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/cosl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/erf.c b/Userspace/apps/test/libc_test/math/erf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/erf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/erfc.c b/Userspace/apps/test/libc_test/math/erfc.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/erfc.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/erfcf.c b/Userspace/apps/test/libc_test/math/erfcf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/erfcf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/erfcl.c b/Userspace/apps/test/libc_test/math/erfcl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/erfcl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/erff.c b/Userspace/apps/test/libc_test/math/erff.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/erff.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/erfl.c b/Userspace/apps/test/libc_test/math/erfl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/erfl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/exp.c b/Userspace/apps/test/libc_test/math/exp.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/exp.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/exp2.c b/Userspace/apps/test/libc_test/math/exp2.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/exp2.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/exp2f.c b/Userspace/apps/test/libc_test/math/exp2f.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/exp2f.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/exp2l.c b/Userspace/apps/test/libc_test/math/exp2l.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/exp2l.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/expf.c b/Userspace/apps/test/libc_test/math/expf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/expf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/expl.c b/Userspace/apps/test/libc_test/math/expl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/expl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/expm1.c b/Userspace/apps/test/libc_test/math/expm1.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/expm1.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/expm1f.c b/Userspace/apps/test/libc_test/math/expm1f.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/expm1f.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/expm1l.c b/Userspace/apps/test/libc_test/math/expm1l.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/expm1l.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/fabs.c b/Userspace/apps/test/libc_test/math/fabs.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/fabs.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/fabsf.c b/Userspace/apps/test/libc_test/math/fabsf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/fabsf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/fabsl.c b/Userspace/apps/test/libc_test/math/fabsl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/fabsl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/fdim.c b/Userspace/apps/test/libc_test/math/fdim.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/fdim.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/fdimf.c b/Userspace/apps/test/libc_test/math/fdimf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/fdimf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/fdiml.c b/Userspace/apps/test/libc_test/math/fdiml.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/fdiml.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/floor.c b/Userspace/apps/test/libc_test/math/floor.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/floor.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/floorf.c b/Userspace/apps/test/libc_test/math/floorf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/floorf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/floorl.c b/Userspace/apps/test/libc_test/math/floorl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/floorl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/fma.c b/Userspace/apps/test/libc_test/math/fma.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/fma.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/fmaf.c b/Userspace/apps/test/libc_test/math/fmaf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/fmaf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/fmal.c b/Userspace/apps/test/libc_test/math/fmal.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/fmal.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/fmax.c b/Userspace/apps/test/libc_test/math/fmax.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/fmax.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/fmaxf.c b/Userspace/apps/test/libc_test/math/fmaxf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/fmaxf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/fmaxl.c b/Userspace/apps/test/libc_test/math/fmaxl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/fmaxl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/fmin.c b/Userspace/apps/test/libc_test/math/fmin.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/fmin.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/fminf.c b/Userspace/apps/test/libc_test/math/fminf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/fminf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/fminl.c b/Userspace/apps/test/libc_test/math/fminl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/fminl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/fmod.c b/Userspace/apps/test/libc_test/math/fmod.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/fmod.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/fmodf.c b/Userspace/apps/test/libc_test/math/fmodf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/fmodf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/fmodl.c b/Userspace/apps/test/libc_test/math/fmodl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/fmodl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/frexp.c b/Userspace/apps/test/libc_test/math/frexp.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/frexp.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/frexpf.c b/Userspace/apps/test/libc_test/math/frexpf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/frexpf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/frexpl.c b/Userspace/apps/test/libc_test/math/frexpl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/frexpl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/hypot.c b/Userspace/apps/test/libc_test/math/hypot.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/hypot.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/hypotf.c b/Userspace/apps/test/libc_test/math/hypotf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/hypotf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/hypotl.c b/Userspace/apps/test/libc_test/math/hypotl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/hypotl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/ilogb.c b/Userspace/apps/test/libc_test/math/ilogb.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/ilogb.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/ilogbf.c b/Userspace/apps/test/libc_test/math/ilogbf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/ilogbf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/ilogbl.c b/Userspace/apps/test/libc_test/math/ilogbl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/ilogbl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/j0.c b/Userspace/apps/test/libc_test/math/j0.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/j0.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/j1.c b/Userspace/apps/test/libc_test/math/j1.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/j1.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/jn.c b/Userspace/apps/test/libc_test/math/jn.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/jn.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/ldexp.c b/Userspace/apps/test/libc_test/math/ldexp.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/ldexp.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/ldexpf.c b/Userspace/apps/test/libc_test/math/ldexpf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/ldexpf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/ldexpl.c b/Userspace/apps/test/libc_test/math/ldexpl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/ldexpl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/lgamma.c b/Userspace/apps/test/libc_test/math/lgamma.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/lgamma.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/lgammaf.c b/Userspace/apps/test/libc_test/math/lgammaf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/lgammaf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/lgammal.c b/Userspace/apps/test/libc_test/math/lgammal.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/lgammal.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/llrint.c b/Userspace/apps/test/libc_test/math/llrint.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/llrint.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/llrintf.c b/Userspace/apps/test/libc_test/math/llrintf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/llrintf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/llrintl.c b/Userspace/apps/test/libc_test/math/llrintl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/llrintl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/llround.c b/Userspace/apps/test/libc_test/math/llround.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/llround.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/llroundf.c b/Userspace/apps/test/libc_test/math/llroundf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/llroundf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/llroundl.c b/Userspace/apps/test/libc_test/math/llroundl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/llroundl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/log.c b/Userspace/apps/test/libc_test/math/log.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/log.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/log10.c b/Userspace/apps/test/libc_test/math/log10.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/log10.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/log10f.c b/Userspace/apps/test/libc_test/math/log10f.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/log10f.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/log10l.c b/Userspace/apps/test/libc_test/math/log10l.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/log10l.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/log1p.c b/Userspace/apps/test/libc_test/math/log1p.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/log1p.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/log1pf.c b/Userspace/apps/test/libc_test/math/log1pf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/log1pf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/log1pl.c b/Userspace/apps/test/libc_test/math/log1pl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/log1pl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/log2.c b/Userspace/apps/test/libc_test/math/log2.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/log2.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/log2f.c b/Userspace/apps/test/libc_test/math/log2f.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/log2f.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/log2l.c b/Userspace/apps/test/libc_test/math/log2l.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/log2l.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/logb.c b/Userspace/apps/test/libc_test/math/logb.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/logb.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/logbf.c b/Userspace/apps/test/libc_test/math/logbf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/logbf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/logbl.c b/Userspace/apps/test/libc_test/math/logbl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/logbl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/logf.c b/Userspace/apps/test/libc_test/math/logf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/logf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/logl.c b/Userspace/apps/test/libc_test/math/logl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/logl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/lrint.c b/Userspace/apps/test/libc_test/math/lrint.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/lrint.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/lrintf.c b/Userspace/apps/test/libc_test/math/lrintf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/lrintf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/lrintl.c b/Userspace/apps/test/libc_test/math/lrintl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/lrintl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/lround.c b/Userspace/apps/test/libc_test/math/lround.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/lround.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/lroundf.c b/Userspace/apps/test/libc_test/math/lroundf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/lroundf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/lroundl.c b/Userspace/apps/test/libc_test/math/lroundl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/lroundl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/modf.c b/Userspace/apps/test/libc_test/math/modf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/modf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/modff.c b/Userspace/apps/test/libc_test/math/modff.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/modff.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/modfl.c b/Userspace/apps/test/libc_test/math/modfl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/modfl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/nan.c b/Userspace/apps/test/libc_test/math/nan.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/nan.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/nanf.c b/Userspace/apps/test/libc_test/math/nanf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/nanf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/nanl.c b/Userspace/apps/test/libc_test/math/nanl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/nanl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/nearbyint.c b/Userspace/apps/test/libc_test/math/nearbyint.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/nearbyint.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/nearbyintf.c b/Userspace/apps/test/libc_test/math/nearbyintf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/nearbyintf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/nearbyintl.c b/Userspace/apps/test/libc_test/math/nearbyintl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/nearbyintl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/nextafter.c b/Userspace/apps/test/libc_test/math/nextafter.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/nextafter.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/nextafterf.c b/Userspace/apps/test/libc_test/math/nextafterf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/nextafterf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/nextafterl.c b/Userspace/apps/test/libc_test/math/nextafterl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/nextafterl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/nexttoward.c b/Userspace/apps/test/libc_test/math/nexttoward.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/nexttoward.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/nexttowardf.c b/Userspace/apps/test/libc_test/math/nexttowardf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/nexttowardf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/nexttowardl.c b/Userspace/apps/test/libc_test/math/nexttowardl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/nexttowardl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/pow.c b/Userspace/apps/test/libc_test/math/pow.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/pow.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/powf.c b/Userspace/apps/test/libc_test/math/powf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/powf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/powl.c b/Userspace/apps/test/libc_test/math/powl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/powl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/remainder.c b/Userspace/apps/test/libc_test/math/remainder.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/remainder.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/remainderf.c b/Userspace/apps/test/libc_test/math/remainderf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/remainderf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/remainderl.c b/Userspace/apps/test/libc_test/math/remainderl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/remainderl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/remquo.c b/Userspace/apps/test/libc_test/math/remquo.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/remquo.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/remquof.c b/Userspace/apps/test/libc_test/math/remquof.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/remquof.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/remquol.c b/Userspace/apps/test/libc_test/math/remquol.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/remquol.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/rint.c b/Userspace/apps/test/libc_test/math/rint.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/rint.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/rintf.c b/Userspace/apps/test/libc_test/math/rintf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/rintf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/rintl.c b/Userspace/apps/test/libc_test/math/rintl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/rintl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/round.c b/Userspace/apps/test/libc_test/math/round.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/round.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/roundf.c b/Userspace/apps/test/libc_test/math/roundf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/roundf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/roundl.c b/Userspace/apps/test/libc_test/math/roundl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/roundl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/scalb.c b/Userspace/apps/test/libc_test/math/scalb.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/scalb.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/scalbln.c b/Userspace/apps/test/libc_test/math/scalbln.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/scalbln.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/scalblnf.c b/Userspace/apps/test/libc_test/math/scalblnf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/scalblnf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/scalblnl.c b/Userspace/apps/test/libc_test/math/scalblnl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/scalblnl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/scalbn.c b/Userspace/apps/test/libc_test/math/scalbn.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/scalbn.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/scalbnf.c b/Userspace/apps/test/libc_test/math/scalbnf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/scalbnf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/scalbnl.c b/Userspace/apps/test/libc_test/math/scalbnl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/scalbnl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/sin.c b/Userspace/apps/test/libc_test/math/sin.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/sin.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/sinf.c b/Userspace/apps/test/libc_test/math/sinf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/sinf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/sinh.c b/Userspace/apps/test/libc_test/math/sinh.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/sinh.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/sinhf.c b/Userspace/apps/test/libc_test/math/sinhf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/sinhf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/sinhl.c b/Userspace/apps/test/libc_test/math/sinhl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/sinhl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/sinl.c b/Userspace/apps/test/libc_test/math/sinl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/sinl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/sqrt.c b/Userspace/apps/test/libc_test/math/sqrt.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/sqrt.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/sqrtf.c b/Userspace/apps/test/libc_test/math/sqrtf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/sqrtf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/sqrtl.c b/Userspace/apps/test/libc_test/math/sqrtl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/sqrtl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/tan.c b/Userspace/apps/test/libc_test/math/tan.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/tan.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/tanf.c b/Userspace/apps/test/libc_test/math/tanf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/tanf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/tanh.c b/Userspace/apps/test/libc_test/math/tanh.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/tanh.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/tanhf.c b/Userspace/apps/test/libc_test/math/tanhf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/tanhf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/tanhl.c b/Userspace/apps/test/libc_test/math/tanhl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/tanhl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/tanl.c b/Userspace/apps/test/libc_test/math/tanl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/tanl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/tgamma.c b/Userspace/apps/test/libc_test/math/tgamma.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/tgamma.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/tgammaf.c b/Userspace/apps/test/libc_test/math/tgammaf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/tgammaf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/tgammal.c b/Userspace/apps/test/libc_test/math/tgammal.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/tgammal.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/trunc.c b/Userspace/apps/test/libc_test/math/trunc.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/trunc.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/truncf.c b/Userspace/apps/test/libc_test/math/truncf.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/truncf.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/truncl.c b/Userspace/apps/test/libc_test/math/truncl.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/truncl.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/y0.c b/Userspace/apps/test/libc_test/math/y0.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/y0.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/y1.c b/Userspace/apps/test/libc_test/math/y1.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/y1.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/math/yn.c b/Userspace/apps/test/libc_test/math/yn.c
new file mode 100644
index 00000000..11cc7a3b
--- /dev/null
+++ b/Userspace/apps/test/libc_test/math/yn.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_attr_destroy.c b/Userspace/apps/test/libc_test/pthread/pthread_attr_destroy.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_attr_destroy.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_attr_getdetachstate.c b/Userspace/apps/test/libc_test/pthread/pthread_attr_getdetachstate.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_attr_getdetachstate.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_attr_getguardsize.c b/Userspace/apps/test/libc_test/pthread/pthread_attr_getguardsize.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_attr_getguardsize.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_attr_getinheritsched.c b/Userspace/apps/test/libc_test/pthread/pthread_attr_getinheritsched.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_attr_getinheritsched.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_attr_getschedparam.c b/Userspace/apps/test/libc_test/pthread/pthread_attr_getschedparam.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_attr_getschedparam.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_attr_getschedpolicy.c b/Userspace/apps/test/libc_test/pthread/pthread_attr_getschedpolicy.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_attr_getschedpolicy.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_attr_getscope.c b/Userspace/apps/test/libc_test/pthread/pthread_attr_getscope.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_attr_getscope.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_attr_getstackaddr.c b/Userspace/apps/test/libc_test/pthread/pthread_attr_getstackaddr.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_attr_getstackaddr.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_attr_getstacksize.c b/Userspace/apps/test/libc_test/pthread/pthread_attr_getstacksize.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_attr_getstacksize.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_attr_init.c b/Userspace/apps/test/libc_test/pthread/pthread_attr_init.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_attr_init.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_attr_setdetachstate.c b/Userspace/apps/test/libc_test/pthread/pthread_attr_setdetachstate.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_attr_setdetachstate.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_attr_setguardsize.c b/Userspace/apps/test/libc_test/pthread/pthread_attr_setguardsize.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_attr_setguardsize.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_attr_setinheritsched.c b/Userspace/apps/test/libc_test/pthread/pthread_attr_setinheritsched.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_attr_setinheritsched.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_attr_setschedparam.c b/Userspace/apps/test/libc_test/pthread/pthread_attr_setschedparam.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_attr_setschedparam.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_attr_setschedpolicy.c b/Userspace/apps/test/libc_test/pthread/pthread_attr_setschedpolicy.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_attr_setschedpolicy.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_attr_setscope.c b/Userspace/apps/test/libc_test/pthread/pthread_attr_setscope.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_attr_setscope.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_attr_setstackaddr.c b/Userspace/apps/test/libc_test/pthread/pthread_attr_setstackaddr.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_attr_setstackaddr.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_attr_setstacksize.c b/Userspace/apps/test/libc_test/pthread/pthread_attr_setstacksize.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_attr_setstacksize.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_cancel.c b/Userspace/apps/test/libc_test/pthread/pthread_cancel.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_cancel.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_cleanup_pop.c b/Userspace/apps/test/libc_test/pthread/pthread_cleanup_pop.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_cleanup_pop.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_cleanup_push.c b/Userspace/apps/test/libc_test/pthread/pthread_cleanup_push.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_cleanup_push.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_cond_broadcast.c b/Userspace/apps/test/libc_test/pthread/pthread_cond_broadcast.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_cond_broadcast.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_cond_destroy.c b/Userspace/apps/test/libc_test/pthread/pthread_cond_destroy.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_cond_destroy.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_cond_init.c b/Userspace/apps/test/libc_test/pthread/pthread_cond_init.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_cond_init.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_cond_signal.c b/Userspace/apps/test/libc_test/pthread/pthread_cond_signal.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_cond_signal.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_cond_timedwait.c b/Userspace/apps/test/libc_test/pthread/pthread_cond_timedwait.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_cond_timedwait.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_cond_wait.c b/Userspace/apps/test/libc_test/pthread/pthread_cond_wait.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_cond_wait.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_condattr_destroy.c b/Userspace/apps/test/libc_test/pthread/pthread_condattr_destroy.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_condattr_destroy.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_condattr_getpshared.c b/Userspace/apps/test/libc_test/pthread/pthread_condattr_getpshared.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_condattr_getpshared.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_condattr_init.c b/Userspace/apps/test/libc_test/pthread/pthread_condattr_init.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_condattr_init.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_condattr_setpshared.c b/Userspace/apps/test/libc_test/pthread/pthread_condattr_setpshared.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_condattr_setpshared.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_create.c b/Userspace/apps/test/libc_test/pthread/pthread_create.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_create.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_detach.c b/Userspace/apps/test/libc_test/pthread/pthread_detach.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_detach.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_equal.c b/Userspace/apps/test/libc_test/pthread/pthread_equal.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_equal.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_exit.c b/Userspace/apps/test/libc_test/pthread/pthread_exit.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_exit.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_getconcurrency.c b/Userspace/apps/test/libc_test/pthread/pthread_getconcurrency.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_getconcurrency.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_getschedparam.c b/Userspace/apps/test/libc_test/pthread/pthread_getschedparam.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_getschedparam.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_getspecific.c b/Userspace/apps/test/libc_test/pthread/pthread_getspecific.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_getspecific.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_join.c b/Userspace/apps/test/libc_test/pthread/pthread_join.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_join.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_key_create.c b/Userspace/apps/test/libc_test/pthread/pthread_key_create.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_key_create.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_key_delete.c b/Userspace/apps/test/libc_test/pthread/pthread_key_delete.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_key_delete.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_mutex_destroy.c b/Userspace/apps/test/libc_test/pthread/pthread_mutex_destroy.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_mutex_destroy.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_mutex_getprioceiling.c b/Userspace/apps/test/libc_test/pthread/pthread_mutex_getprioceiling.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_mutex_getprioceiling.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_mutex_init.c b/Userspace/apps/test/libc_test/pthread/pthread_mutex_init.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_mutex_init.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_mutex_lock.c b/Userspace/apps/test/libc_test/pthread/pthread_mutex_lock.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_mutex_lock.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_mutex_setprioceiling.c b/Userspace/apps/test/libc_test/pthread/pthread_mutex_setprioceiling.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_mutex_setprioceiling.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_mutex_trylock.c b/Userspace/apps/test/libc_test/pthread/pthread_mutex_trylock.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_mutex_trylock.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_mutex_unlock.c b/Userspace/apps/test/libc_test/pthread/pthread_mutex_unlock.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_mutex_unlock.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see .
+*/
+
+#include
diff --git a/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_destroy.c b/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_destroy.c
new file mode 100644
index 00000000..abf1cbc1
--- /dev/null
+++ b/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_destroy.c
@@ -0,0 +1,18 @@
+/*
+ This file is part of Fennix Userspace.
+
+ Fennix Userspace is free software: you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation, either version 3 of
+ the License, or (at your option) any later version.
+
+ Fennix Userspace is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Fennix Userspace. If not, see