diff --git a/Fennix Userspace.code-workspace b/Fennix Userspace.code-workspace index 509c0edc..de72dea0 100644 --- a/Fennix Userspace.code-workspace +++ b/Fennix Userspace.code-workspace @@ -15,10 +15,10 @@ "userspace/libc", "vscode", "userspace/apps/sys/init", - "userspace/apps/test/utest", "userspace/libs/libm", "devcontainer", - "userspace/libs" + "userspace/libs", + "userspace/apps/test" ] } } diff --git a/Userspace/apps/test/libc_test/assert/assert.c b/Userspace/apps/test/libc_test/assert.c similarity index 100% rename from Userspace/apps/test/libc_test/assert/assert.c rename to Userspace/apps/test/libc_test/assert.c diff --git a/Userspace/apps/test/libc_test/dirent/alphasort.c b/Userspace/apps/test/libc_test/dirent.c similarity index 50% rename from Userspace/apps/test/libc_test/dirent/alphasort.c rename to Userspace/apps/test/libc_test/dirent.c index 5c3fc86b..9a81aa97 100644 --- a/Userspace/apps/test/libc_test/dirent/alphasort.c +++ b/Userspace/apps/test/libc_test/dirent.c @@ -22,8 +22,7 @@ #include #include #include - -/* https://pubs.opengroup.org/onlinepubs/9799919799/functions/alphasort.html */ +#include int test_alphasort(void) { @@ -44,3 +43,98 @@ int test_alphasort(void) free(namelist); return 0; } + +int test_closedir(void) +{ + DIR *dir = opendir("."); + if (closedir(dir) != 0) + return 0x101; + + if (closedir(NULL) != -1) + return 0x102; + + // if (closedir(dir) != -1) /* yeah... this will result in a core dump */ + // return 0x103; + return 0; +} + +int test_dirfd(void) +{ + DIR *dir = opendir("."); + + if (dirfd(dir) == -1) + return 0x101; + + // if (dirfd(NULL) != -1) + // return 0x102; + + return 0; +} + +int test_fdopendir(void) +{ + DIR *dir; + struct dirent *dp; + + int fd = open(".", O_RDONLY); + + dir = fdopendir(fd); + if (dir == NULL) + return 0x101; + + dp = readdir(dir); + if (dp == NULL) + return 0x102; + + if (closedir(dir) != 0) + return 0x103; + + return 0; +} + +int test_opendir() +{ + DIR *dir = opendir("."); + if (dir == NULL) + return 0x101; + + if (closedir(dir) != 0) + return 0x102; + + return 0; +} + +int test_posix_getdents() +{ + return 2; +} + +int test_readdir_r() +{ + return 2; +} + +int test_readdir() +{ + return 2; +} + +int test_rewinddir() +{ + return 2; +} + +int test_scandir() +{ + return 2; +} + +int test_seekdir() +{ + return 2; +} + +int test_telldir() +{ + return 2; +} diff --git a/Userspace/apps/test/libc_test/dirent/closedir.c b/Userspace/apps/test/libc_test/dirent/closedir.c deleted file mode 100644 index 6da97a01..00000000 --- a/Userspace/apps/test/libc_test/dirent/closedir.c +++ /dev/null @@ -1,35 +0,0 @@ -/* - 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 -#include - -/* https://pubs.opengroup.org/onlinepubs/9799919799/functions/closedir.html */ - -int test_closedir(void) -{ - DIR *dir = opendir("."); - if (closedir(dir) != 0) - return 0x101; - - if (closedir(NULL) != -1) - return 0x102; - - // if (closedir(dir) != -1) /* yeah... this will result in a core dump */ - // return 0x103; - return 0; -} diff --git a/Userspace/apps/test/libc_test/dirent/dirfd.c b/Userspace/apps/test/libc_test/dirent/dirfd.c deleted file mode 100644 index 35971952..00000000 --- a/Userspace/apps/test/libc_test/dirent/dirfd.c +++ /dev/null @@ -1,34 +0,0 @@ -/* - 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 -#include - -/* https://pubs.opengroup.org/onlinepubs/9799919799/functions/dirfd.html */ - -int test_dirfd(void) -{ - DIR *dir = opendir("."); - - if (dirfd(dir) == -1) - return 0x101; - - // if (dirfd(NULL) != -1) - // return 0x102; - - return 0; -} diff --git a/Userspace/apps/test/libc_test/dirent/fdopendir.c b/Userspace/apps/test/libc_test/dirent/fdopendir.c deleted file mode 100644 index 655523af..00000000 --- a/Userspace/apps/test/libc_test/dirent/fdopendir.c +++ /dev/null @@ -1,43 +0,0 @@ -/* - 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 -#include -#include - -/* https://pubs.opengroup.org/onlinepubs/9799919799/functions/fdopendir.html */ - -int test_fdopendir(void) -{ - DIR *dir; - struct dirent *dp; - - int fd = open(".", O_RDONLY); - - dir = fdopendir(fd); - if (dir == NULL) - return 0x101; - - dp = readdir(dir); - if (dp == NULL) - return 0x102; - - if (closedir(dir) != 0) - return 0x103; - - return 0; -} diff --git a/Userspace/apps/test/libc_test/dirent/opendir.c b/Userspace/apps/test/libc_test/dirent/opendir.c deleted file mode 100644 index 63b1a201..00000000 --- a/Userspace/apps/test/libc_test/dirent/opendir.c +++ /dev/null @@ -1,33 +0,0 @@ -/* - 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 -#include - -/* https://pubs.opengroup.org/onlinepubs/9799919799/functions/opendir.html */ - -int test_opendir() -{ - DIR *dir = opendir("."); - if (dir == NULL) - return 0x101; - - if (closedir(dir) != 0) - return 0x102; - - return 0; -} diff --git a/Userspace/apps/test/libc_test/dirent/posix_getdents.c b/Userspace/apps/test/libc_test/dirent/posix_getdents.c deleted file mode 100644 index 7f57c212..00000000 --- a/Userspace/apps/test/libc_test/dirent/posix_getdents.c +++ /dev/null @@ -1,27 +0,0 @@ -/* - 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 -#include -#include - -/* https://pubs.opengroup.org/onlinepubs/9799919799/functions/posix_getdents.html */ - -int test_posix_getdents() -{ - return 2; -} diff --git a/Userspace/apps/test/libc_test/dirent/readdir.c b/Userspace/apps/test/libc_test/dirent/readdir.c deleted file mode 100644 index 68d84b85..00000000 --- a/Userspace/apps/test/libc_test/dirent/readdir.c +++ /dev/null @@ -1,20 +0,0 @@ -/* - 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 - -int test_readdir() { return 2; } diff --git a/Userspace/apps/test/libc_test/dirent/readdir_r.c b/Userspace/apps/test/libc_test/dirent/readdir_r.c deleted file mode 100644 index be87cc69..00000000 --- a/Userspace/apps/test/libc_test/dirent/readdir_r.c +++ /dev/null @@ -1,25 +0,0 @@ -/* - 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 - -/* https://pubs.opengroup.org/onlinepubs/9799919799/functions/readdir_r.html */ - -int test_readdir_r() -{ - return 2; -} diff --git a/Userspace/apps/test/libc_test/dirent/rewinddir.c b/Userspace/apps/test/libc_test/dirent/rewinddir.c deleted file mode 100644 index 4ea710e8..00000000 --- a/Userspace/apps/test/libc_test/dirent/rewinddir.c +++ /dev/null @@ -1,20 +0,0 @@ -/* - 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 - -int test_rewinddir() { return 2; } diff --git a/Userspace/apps/test/libc_test/dirent/scandir.c b/Userspace/apps/test/libc_test/dirent/scandir.c deleted file mode 100644 index b646d459..00000000 --- a/Userspace/apps/test/libc_test/dirent/scandir.c +++ /dev/null @@ -1,20 +0,0 @@ -/* - 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 - -int test_scandir() { return 2; } diff --git a/Userspace/apps/test/libc_test/dirent/seekdir.c b/Userspace/apps/test/libc_test/dirent/seekdir.c deleted file mode 100644 index 2f665b5a..00000000 --- a/Userspace/apps/test/libc_test/dirent/seekdir.c +++ /dev/null @@ -1,20 +0,0 @@ -/* - 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 - -int test_seekdir() { return 2; } diff --git a/Userspace/apps/test/libc_test/dirent/telldir.c b/Userspace/apps/test/libc_test/dirent/telldir.c deleted file mode 100644 index 4c9202d3..00000000 --- a/Userspace/apps/test/libc_test/dirent/telldir.c +++ /dev/null @@ -1,20 +0,0 @@ -/* - 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 - -int test_telldir() { return 2; } diff --git a/Userspace/apps/test/libc_test/errno/__errno_location.c b/Userspace/apps/test/libc_test/errno.c similarity index 87% rename from Userspace/apps/test/libc_test/errno/__errno_location.c rename to Userspace/apps/test/libc_test/errno.c index b76f8ecc..aee2379e 100644 --- a/Userspace/apps/test/libc_test/errno/__errno_location.c +++ b/Userspace/apps/test/libc_test/errno.c @@ -24,3 +24,11 @@ int test___errno_location(void) return 1; return 0; } + +int test_strerror(void) +{ + char *enosys = strerror(ENOSYS); + if (enosys == ((void *)0)) + return -1; + return 0; +} diff --git a/Userspace/apps/test/libc_test/errno/strerror.c b/Userspace/apps/test/libc_test/errno/strerror.c deleted file mode 100644 index 81ce89dc..00000000 --- a/Userspace/apps/test/libc_test/errno/strerror.c +++ /dev/null @@ -1,26 +0,0 @@ -/* - 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 - -int test_strerror(void) -{ - char *enosys = strerror(ENOSYS); - if (enosys == ((void *)0)) - return -1; - return 0; -} diff --git a/Userspace/apps/test/libc_test/fcntl/fcntl.c b/Userspace/apps/test/libc_test/fcntl.c similarity index 76% rename from Userspace/apps/test/libc_test/fcntl/fcntl.c rename to Userspace/apps/test/libc_test/fcntl.c index b9ba70b2..0dbded64 100644 --- a/Userspace/apps/test/libc_test/fcntl/fcntl.c +++ b/Userspace/apps/test/libc_test/fcntl.c @@ -17,4 +17,32 @@ #include -int test_fcntl() { return 2; } +int test_creat() +{ + return 2; +} + +int test_fcntl() +{ + return 2; +} + +int test_open() +{ + return 2; +} + +int test_openat() +{ + return 2; +} + +int test_posix_fadvise() +{ + return 2; +} + +int test_posix_fallocate() +{ + return 2; +} diff --git a/Userspace/apps/test/libc_test/fcntl/creat.c b/Userspace/apps/test/libc_test/fcntl/creat.c deleted file mode 100644 index 5c539d13..00000000 --- a/Userspace/apps/test/libc_test/fcntl/creat.c +++ /dev/null @@ -1,20 +0,0 @@ -/* - 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 - -int test_creat() { return 2; } diff --git a/Userspace/apps/test/libc_test/fcntl/open.c b/Userspace/apps/test/libc_test/fcntl/open.c deleted file mode 100644 index eef9929c..00000000 --- a/Userspace/apps/test/libc_test/fcntl/open.c +++ /dev/null @@ -1,20 +0,0 @@ -/* - 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 - -int test_open() { return 2; } diff --git a/Userspace/apps/test/libc_test/fcntl/openat.c b/Userspace/apps/test/libc_test/fcntl/openat.c deleted file mode 100644 index c1eaf7e2..00000000 --- a/Userspace/apps/test/libc_test/fcntl/openat.c +++ /dev/null @@ -1,20 +0,0 @@ -/* - 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 - -int test_openat() { return 2; } diff --git a/Userspace/apps/test/libc_test/fcntl/posix_fadvise.c b/Userspace/apps/test/libc_test/fcntl/posix_fadvise.c deleted file mode 100644 index d4d47820..00000000 --- a/Userspace/apps/test/libc_test/fcntl/posix_fadvise.c +++ /dev/null @@ -1,20 +0,0 @@ -/* - 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 - -int test_posix_fadvise() { return 2; } diff --git a/Userspace/apps/test/libc_test/fcntl/posix_fallocate.c b/Userspace/apps/test/libc_test/fcntl/posix_fallocate.c deleted file mode 100644 index b773a276..00000000 --- a/Userspace/apps/test/libc_test/fcntl/posix_fallocate.c +++ /dev/null @@ -1,20 +0,0 @@ -/* - 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 - -int test_posix_fallocate() { return 2; } diff --git a/Userspace/apps/test/libc_test/locale/duplocale.c b/Userspace/apps/test/libc_test/locale/duplocale.c deleted file mode 100644 index c04d36c2..00000000 --- a/Userspace/apps/test/libc_test/locale/duplocale.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index c04d36c2..00000000 --- a/Userspace/apps/test/libc_test/locale/freelocale.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index c04d36c2..00000000 --- a/Userspace/apps/test/libc_test/locale/getlocalename_l.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index c04d36c2..00000000 --- a/Userspace/apps/test/libc_test/locale/localeconv.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index c04d36c2..00000000 --- a/Userspace/apps/test/libc_test/locale/newlocale.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index c04d36c2..00000000 --- a/Userspace/apps/test/libc_test/locale/setlocale.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index c04d36c2..00000000 --- a/Userspace/apps/test/libc_test/locale/uselocale.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 index 4547260f..d546a329 100644 --- a/Userspace/apps/test/libc_test/main.c +++ b/Userspace/apps/test/libc_test/main.c @@ -24,22 +24,21 @@ __attribute__((noreturn)) __attribute__((no_stack_protector)) void __stack_chk_f __builtin_unreachable(); } -int sample_test_pass() -{ - return 0; -} +int sample_test_pass() { return 0; } +int sample_test_fail() { return 1; } -int sample_test_fail() +/* this function is more for debugger */ +void __test_prefix(const char *func) { - return 1; + printf("Testing \033[1;30m%s\033[0m...", func); + fflush(stdout); } #define TEST(func) \ do \ { \ - printf("Testing \033[1;30m%s\033[0m...", #func); \ - fflush(stdout); \ - int func(void); /* Declare the function */ \ + __test_prefix(#func); \ + int func(void); \ int result = func(); \ if (result == 0) \ printf("\033[0;32m PASS (%d)\033[0m\n", result); \ diff --git a/Userspace/apps/test/libc_test/pthread/pthread_attr_destroy.c b/Userspace/apps/test/libc_test/pthread/pthread_attr_destroy.c deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_attr_destroy.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_attr_getdetachstate.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_attr_getguardsize.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_attr_getinheritsched.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_attr_getschedparam.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_attr_getschedpolicy.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_attr_getscope.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_attr_getstackaddr.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_attr_getstacksize.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_attr_init.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_attr_setdetachstate.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_attr_setguardsize.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_attr_setinheritsched.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_attr_setschedparam.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_attr_setschedpolicy.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_attr_setscope.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_attr_setstackaddr.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_attr_setstacksize.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_cancel.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_cleanup_pop.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_cleanup_push.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_cond_broadcast.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_cond_destroy.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_cond_init.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_cond_signal.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_cond_timedwait.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_cond_wait.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_condattr_destroy.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_condattr_getpshared.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_condattr_init.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_condattr_setpshared.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_create.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_detach.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_equal.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_exit.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_getconcurrency.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_getschedparam.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_getspecific.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_join.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_key_create.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_key_delete.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_mutex_destroy.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_mutex_getprioceiling.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_mutex_init.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_mutex_lock.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_mutex_setprioceiling.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_mutex_trylock.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_mutex_unlock.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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 deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_destroy.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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_getprioceiling.c b/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_getprioceiling.c deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_getprioceiling.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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_getprotocol.c b/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_getprotocol.c deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_getprotocol.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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_getpshared.c b/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_getpshared.c deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_getpshared.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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_gettype.c b/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_gettype.c deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_gettype.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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_init.c b/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_init.c deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_init.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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_setprioceiling.c b/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_setprioceiling.c deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_setprioceiling.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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_setprotocol.c b/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_setprotocol.c deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_setprotocol.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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_setpshared.c b/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_setpshared.c deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_setpshared.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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_settype.c b/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_settype.c deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_settype.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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_once.c b/Userspace/apps/test/libc_test/pthread/pthread_once.c deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_once.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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_rwlock_destroy.c b/Userspace/apps/test/libc_test/pthread/pthread_rwlock_destroy.c deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_rwlock_destroy.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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_rwlock_init.c b/Userspace/apps/test/libc_test/pthread/pthread_rwlock_init.c deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_rwlock_init.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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_rwlock_rdlock.c b/Userspace/apps/test/libc_test/pthread/pthread_rwlock_rdlock.c deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_rwlock_rdlock.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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_rwlock_tryrdlock.c b/Userspace/apps/test/libc_test/pthread/pthread_rwlock_tryrdlock.c deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_rwlock_tryrdlock.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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_rwlock_trywrlock.c b/Userspace/apps/test/libc_test/pthread/pthread_rwlock_trywrlock.c deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_rwlock_trywrlock.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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_rwlock_unlock.c b/Userspace/apps/test/libc_test/pthread/pthread_rwlock_unlock.c deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_rwlock_unlock.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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_rwlock_wrlock.c b/Userspace/apps/test/libc_test/pthread/pthread_rwlock_wrlock.c deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_rwlock_wrlock.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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_rwlockattr_destroy.c b/Userspace/apps/test/libc_test/pthread/pthread_rwlockattr_destroy.c deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_rwlockattr_destroy.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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_rwlockattr_getpshared.c b/Userspace/apps/test/libc_test/pthread/pthread_rwlockattr_getpshared.c deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_rwlockattr_getpshared.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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_rwlockattr_init.c b/Userspace/apps/test/libc_test/pthread/pthread_rwlockattr_init.c deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_rwlockattr_init.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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_rwlockattr_setpshared.c b/Userspace/apps/test/libc_test/pthread/pthread_rwlockattr_setpshared.c deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_rwlockattr_setpshared.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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_self.c b/Userspace/apps/test/libc_test/pthread/pthread_self.c deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_self.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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_setcancelstate.c b/Userspace/apps/test/libc_test/pthread/pthread_setcancelstate.c deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_setcancelstate.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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_setcanceltype.c b/Userspace/apps/test/libc_test/pthread/pthread_setcanceltype.c deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_setcanceltype.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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_setconcurrency.c b/Userspace/apps/test/libc_test/pthread/pthread_setconcurrency.c deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_setconcurrency.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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_setschedparam.c b/Userspace/apps/test/libc_test/pthread/pthread_setschedparam.c deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_setschedparam.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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_setspecific.c b/Userspace/apps/test/libc_test/pthread/pthread_setspecific.c deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_setspecific.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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_testcancel.c b/Userspace/apps/test/libc_test/pthread/pthread_testcancel.c deleted file mode 100644 index abf1cbc1..00000000 --- a/Userspace/apps/test/libc_test/pthread/pthread_testcancel.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/pwd/endpwent.c b/Userspace/apps/test/libc_test/pwd/endpwent.c deleted file mode 100644 index 1f8293c4..00000000 --- a/Userspace/apps/test/libc_test/pwd/endpwent.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/pwd/getpwent.c b/Userspace/apps/test/libc_test/pwd/getpwent.c deleted file mode 100644 index 1f8293c4..00000000 --- a/Userspace/apps/test/libc_test/pwd/getpwent.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/pwd/getpwnam.c b/Userspace/apps/test/libc_test/pwd/getpwnam.c deleted file mode 100644 index 1f8293c4..00000000 --- a/Userspace/apps/test/libc_test/pwd/getpwnam.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/pwd/getpwnam_r.c b/Userspace/apps/test/libc_test/pwd/getpwnam_r.c deleted file mode 100644 index 1f8293c4..00000000 --- a/Userspace/apps/test/libc_test/pwd/getpwnam_r.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/pwd/getpwuid.c b/Userspace/apps/test/libc_test/pwd/getpwuid.c deleted file mode 100644 index 1f8293c4..00000000 --- a/Userspace/apps/test/libc_test/pwd/getpwuid.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/pwd/getpwuid_r.c b/Userspace/apps/test/libc_test/pwd/getpwuid_r.c deleted file mode 100644 index 1f8293c4..00000000 --- a/Userspace/apps/test/libc_test/pwd/getpwuid_r.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/pwd/setpwent.c b/Userspace/apps/test/libc_test/pwd/setpwent.c deleted file mode 100644 index 1f8293c4..00000000 --- a/Userspace/apps/test/libc_test/pwd/setpwent.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/signal/kill.c b/Userspace/apps/test/libc_test/signal/kill.c deleted file mode 100644 index 7ce61d2b..00000000 --- a/Userspace/apps/test/libc_test/signal/kill.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/signal/killpg.c b/Userspace/apps/test/libc_test/signal/killpg.c deleted file mode 100644 index 7ce61d2b..00000000 --- a/Userspace/apps/test/libc_test/signal/killpg.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/signal/psiginfo.c b/Userspace/apps/test/libc_test/signal/psiginfo.c deleted file mode 100644 index 7ce61d2b..00000000 --- a/Userspace/apps/test/libc_test/signal/psiginfo.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/signal/psignal.c b/Userspace/apps/test/libc_test/signal/psignal.c deleted file mode 100644 index 7ce61d2b..00000000 --- a/Userspace/apps/test/libc_test/signal/psignal.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/signal/pthread_kill.c b/Userspace/apps/test/libc_test/signal/pthread_kill.c deleted file mode 100644 index 7ce61d2b..00000000 --- a/Userspace/apps/test/libc_test/signal/pthread_kill.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/signal/pthread_sigmask.c b/Userspace/apps/test/libc_test/signal/pthread_sigmask.c deleted file mode 100644 index 7ce61d2b..00000000 --- a/Userspace/apps/test/libc_test/signal/pthread_sigmask.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/signal/raise.c b/Userspace/apps/test/libc_test/signal/raise.c deleted file mode 100644 index 7ce61d2b..00000000 --- a/Userspace/apps/test/libc_test/signal/raise.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/signal/sig2str.c b/Userspace/apps/test/libc_test/signal/sig2str.c deleted file mode 100644 index 7ce61d2b..00000000 --- a/Userspace/apps/test/libc_test/signal/sig2str.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/signal/sigaction.c b/Userspace/apps/test/libc_test/signal/sigaction.c deleted file mode 100644 index 7ce61d2b..00000000 --- a/Userspace/apps/test/libc_test/signal/sigaction.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/signal/sigaddset.c b/Userspace/apps/test/libc_test/signal/sigaddset.c deleted file mode 100644 index 7ce61d2b..00000000 --- a/Userspace/apps/test/libc_test/signal/sigaddset.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/signal/sigaltstack.c b/Userspace/apps/test/libc_test/signal/sigaltstack.c deleted file mode 100644 index 7ce61d2b..00000000 --- a/Userspace/apps/test/libc_test/signal/sigaltstack.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/signal/sigdelset.c b/Userspace/apps/test/libc_test/signal/sigdelset.c deleted file mode 100644 index 7ce61d2b..00000000 --- a/Userspace/apps/test/libc_test/signal/sigdelset.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/signal/sigemptyset.c b/Userspace/apps/test/libc_test/signal/sigemptyset.c deleted file mode 100644 index 7ce61d2b..00000000 --- a/Userspace/apps/test/libc_test/signal/sigemptyset.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/signal/sigfillset.c b/Userspace/apps/test/libc_test/signal/sigfillset.c deleted file mode 100644 index 7ce61d2b..00000000 --- a/Userspace/apps/test/libc_test/signal/sigfillset.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/signal/sigismember.c b/Userspace/apps/test/libc_test/signal/sigismember.c deleted file mode 100644 index 7ce61d2b..00000000 --- a/Userspace/apps/test/libc_test/signal/sigismember.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/signal/signal.c b/Userspace/apps/test/libc_test/signal/signal.c deleted file mode 100644 index 7ce61d2b..00000000 --- a/Userspace/apps/test/libc_test/signal/signal.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/signal/sigpending.c b/Userspace/apps/test/libc_test/signal/sigpending.c deleted file mode 100644 index 7ce61d2b..00000000 --- a/Userspace/apps/test/libc_test/signal/sigpending.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/signal/sigprocmask.c b/Userspace/apps/test/libc_test/signal/sigprocmask.c deleted file mode 100644 index 7ce61d2b..00000000 --- a/Userspace/apps/test/libc_test/signal/sigprocmask.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/signal/sigqueue.c b/Userspace/apps/test/libc_test/signal/sigqueue.c deleted file mode 100644 index 7ce61d2b..00000000 --- a/Userspace/apps/test/libc_test/signal/sigqueue.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/signal/sigsuspend.c b/Userspace/apps/test/libc_test/signal/sigsuspend.c deleted file mode 100644 index 7ce61d2b..00000000 --- a/Userspace/apps/test/libc_test/signal/sigsuspend.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/signal/sigtimedwait.c b/Userspace/apps/test/libc_test/signal/sigtimedwait.c deleted file mode 100644 index 7ce61d2b..00000000 --- a/Userspace/apps/test/libc_test/signal/sigtimedwait.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/signal/sigwait.c b/Userspace/apps/test/libc_test/signal/sigwait.c deleted file mode 100644 index 7ce61d2b..00000000 --- a/Userspace/apps/test/libc_test/signal/sigwait.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/signal/sigwaitinfo.c b/Userspace/apps/test/libc_test/signal/sigwaitinfo.c deleted file mode 100644 index 7ce61d2b..00000000 --- a/Userspace/apps/test/libc_test/signal/sigwaitinfo.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/signal/str2sig.c b/Userspace/apps/test/libc_test/signal/str2sig.c deleted file mode 100644 index 7ce61d2b..00000000 --- a/Userspace/apps/test/libc_test/signal/str2sig.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/clearerr.c b/Userspace/apps/test/libc_test/stdio/clearerr.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/clearerr.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/ctermid.c b/Userspace/apps/test/libc_test/stdio/ctermid.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/ctermid.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/dprintf.c b/Userspace/apps/test/libc_test/stdio/dprintf.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/dprintf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/fclose.c b/Userspace/apps/test/libc_test/stdio/fclose.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/fclose.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/fdopen.c b/Userspace/apps/test/libc_test/stdio/fdopen.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/fdopen.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/feof.c b/Userspace/apps/test/libc_test/stdio/feof.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/feof.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/ferror.c b/Userspace/apps/test/libc_test/stdio/ferror.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/ferror.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/fflush.c b/Userspace/apps/test/libc_test/stdio/fflush.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/fflush.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/fgetc.c b/Userspace/apps/test/libc_test/stdio/fgetc.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/fgetc.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/fgetpos.c b/Userspace/apps/test/libc_test/stdio/fgetpos.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/fgetpos.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/fgets.c b/Userspace/apps/test/libc_test/stdio/fgets.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/fgets.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/fileno.c b/Userspace/apps/test/libc_test/stdio/fileno.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/fileno.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/flockfile.c b/Userspace/apps/test/libc_test/stdio/flockfile.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/flockfile.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/fmemopen.c b/Userspace/apps/test/libc_test/stdio/fmemopen.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/fmemopen.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/fopen.c b/Userspace/apps/test/libc_test/stdio/fopen.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/fopen.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/fprintf.c b/Userspace/apps/test/libc_test/stdio/fprintf.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/fprintf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/fputc.c b/Userspace/apps/test/libc_test/stdio/fputc.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/fputc.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/fputs.c b/Userspace/apps/test/libc_test/stdio/fputs.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/fputs.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/fread.c b/Userspace/apps/test/libc_test/stdio/fread.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/fread.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/freopen.c b/Userspace/apps/test/libc_test/stdio/freopen.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/freopen.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/fscanf.c b/Userspace/apps/test/libc_test/stdio/fscanf.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/fscanf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/fseek.c b/Userspace/apps/test/libc_test/stdio/fseek.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/fseek.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/fseeko.c b/Userspace/apps/test/libc_test/stdio/fseeko.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/fseeko.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/fsetpos.c b/Userspace/apps/test/libc_test/stdio/fsetpos.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/fsetpos.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/ftell.c b/Userspace/apps/test/libc_test/stdio/ftell.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/ftell.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/ftello.c b/Userspace/apps/test/libc_test/stdio/ftello.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/ftello.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/ftrylockfile.c b/Userspace/apps/test/libc_test/stdio/ftrylockfile.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/ftrylockfile.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/funlockfile.c b/Userspace/apps/test/libc_test/stdio/funlockfile.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/funlockfile.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/fwrite.c b/Userspace/apps/test/libc_test/stdio/fwrite.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/fwrite.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/getc.c b/Userspace/apps/test/libc_test/stdio/getc.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/getc.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/getc_unlocked.c b/Userspace/apps/test/libc_test/stdio/getc_unlocked.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/getc_unlocked.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/getchar.c b/Userspace/apps/test/libc_test/stdio/getchar.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/getchar.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/getchar_unlocked.c b/Userspace/apps/test/libc_test/stdio/getchar_unlocked.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/getchar_unlocked.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/getdelim.c b/Userspace/apps/test/libc_test/stdio/getdelim.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/getdelim.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/getline.c b/Userspace/apps/test/libc_test/stdio/getline.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/getline.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/open_memstream.c b/Userspace/apps/test/libc_test/stdio/open_memstream.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/open_memstream.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/pclose.c b/Userspace/apps/test/libc_test/stdio/pclose.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/pclose.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/perror.c b/Userspace/apps/test/libc_test/stdio/perror.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/perror.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/popen.c b/Userspace/apps/test/libc_test/stdio/popen.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/popen.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/printf.c b/Userspace/apps/test/libc_test/stdio/printf.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/printf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/putc.c b/Userspace/apps/test/libc_test/stdio/putc.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/putc.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/putc_unlocked.c b/Userspace/apps/test/libc_test/stdio/putc_unlocked.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/putc_unlocked.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/putchar.c b/Userspace/apps/test/libc_test/stdio/putchar.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/putchar.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/putchar_unlocked.c b/Userspace/apps/test/libc_test/stdio/putchar_unlocked.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/putchar_unlocked.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/puts.c b/Userspace/apps/test/libc_test/stdio/puts.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/puts.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/remove.c b/Userspace/apps/test/libc_test/stdio/remove.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/remove.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/rename.c b/Userspace/apps/test/libc_test/stdio/rename.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/rename.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/renameat.c b/Userspace/apps/test/libc_test/stdio/renameat.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/renameat.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/rewind.c b/Userspace/apps/test/libc_test/stdio/rewind.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/rewind.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/scanf.c b/Userspace/apps/test/libc_test/stdio/scanf.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/scanf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/setbuf.c b/Userspace/apps/test/libc_test/stdio/setbuf.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/setbuf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/setvbuf.c b/Userspace/apps/test/libc_test/stdio/setvbuf.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/setvbuf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/snprintf.c b/Userspace/apps/test/libc_test/stdio/snprintf.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/snprintf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/sprintf.c b/Userspace/apps/test/libc_test/stdio/sprintf.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/sprintf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/sscanf.c b/Userspace/apps/test/libc_test/stdio/sscanf.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/sscanf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/tmpfile.c b/Userspace/apps/test/libc_test/stdio/tmpfile.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/tmpfile.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/tmpnam.c b/Userspace/apps/test/libc_test/stdio/tmpnam.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/tmpnam.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/ungetc.c b/Userspace/apps/test/libc_test/stdio/ungetc.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/ungetc.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/vdprintf.c b/Userspace/apps/test/libc_test/stdio/vdprintf.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/vdprintf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/vfprintf.c b/Userspace/apps/test/libc_test/stdio/vfprintf.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/vfprintf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/vfscanf.c b/Userspace/apps/test/libc_test/stdio/vfscanf.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/vfscanf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/vprintf.c b/Userspace/apps/test/libc_test/stdio/vprintf.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/vprintf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/vscanf.c b/Userspace/apps/test/libc_test/stdio/vscanf.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/vscanf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/vsnprintf.c b/Userspace/apps/test/libc_test/stdio/vsnprintf.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/vsnprintf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/vsprintf.c b/Userspace/apps/test/libc_test/stdio/vsprintf.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/vsprintf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdio/vsscanf.c b/Userspace/apps/test/libc_test/stdio/vsscanf.c deleted file mode 100644 index ecc8285b..00000000 --- a/Userspace/apps/test/libc_test/stdio/vsscanf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/a64l.c b/Userspace/apps/test/libc_test/stdlib/a64l.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/a64l.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/abort.c b/Userspace/apps/test/libc_test/stdlib/abort.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/abort.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/abs.c b/Userspace/apps/test/libc_test/stdlib/abs.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/abs.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/atexit.c b/Userspace/apps/test/libc_test/stdlib/atexit.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/atexit.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/atof.c b/Userspace/apps/test/libc_test/stdlib/atof.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/atof.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/atoi.c b/Userspace/apps/test/libc_test/stdlib/atoi.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/atoi.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/atol.c b/Userspace/apps/test/libc_test/stdlib/atol.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/atol.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/bsearch.c b/Userspace/apps/test/libc_test/stdlib/bsearch.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/bsearch.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/calloc.c b/Userspace/apps/test/libc_test/stdlib/calloc.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/calloc.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/div.c b/Userspace/apps/test/libc_test/stdlib/div.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/div.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/drand48.c b/Userspace/apps/test/libc_test/stdlib/drand48.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/drand48.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/ecvt.c b/Userspace/apps/test/libc_test/stdlib/ecvt.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/ecvt.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/erand48.c b/Userspace/apps/test/libc_test/stdlib/erand48.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/erand48.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/exit.c b/Userspace/apps/test/libc_test/stdlib/exit.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/exit.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/fcvt.c b/Userspace/apps/test/libc_test/stdlib/fcvt.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/fcvt.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/free.c b/Userspace/apps/test/libc_test/stdlib/free.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/free.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/gcvt.c b/Userspace/apps/test/libc_test/stdlib/gcvt.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/gcvt.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/getenv.c b/Userspace/apps/test/libc_test/stdlib/getenv.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/getenv.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/getsubopt.c b/Userspace/apps/test/libc_test/stdlib/getsubopt.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/getsubopt.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/grantpt.c b/Userspace/apps/test/libc_test/stdlib/grantpt.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/grantpt.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/initstate.c b/Userspace/apps/test/libc_test/stdlib/initstate.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/initstate.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/jrand48.c b/Userspace/apps/test/libc_test/stdlib/jrand48.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/jrand48.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/l64a.c b/Userspace/apps/test/libc_test/stdlib/l64a.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/l64a.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/labs.c b/Userspace/apps/test/libc_test/stdlib/labs.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/labs.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/lcong48.c b/Userspace/apps/test/libc_test/stdlib/lcong48.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/lcong48.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/ldiv.c b/Userspace/apps/test/libc_test/stdlib/ldiv.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/ldiv.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/lrand48.c b/Userspace/apps/test/libc_test/stdlib/lrand48.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/lrand48.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/malloc.c b/Userspace/apps/test/libc_test/stdlib/malloc.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/malloc.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/mblen.c b/Userspace/apps/test/libc_test/stdlib/mblen.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/mblen.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/mbstowcs.c b/Userspace/apps/test/libc_test/stdlib/mbstowcs.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/mbstowcs.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/mbtowc.c b/Userspace/apps/test/libc_test/stdlib/mbtowc.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/mbtowc.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/mkstemp.c b/Userspace/apps/test/libc_test/stdlib/mkstemp.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/mkstemp.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/mktemp.c b/Userspace/apps/test/libc_test/stdlib/mktemp.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/mktemp.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/mrand48.c b/Userspace/apps/test/libc_test/stdlib/mrand48.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/mrand48.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/nrand48.c b/Userspace/apps/test/libc_test/stdlib/nrand48.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/nrand48.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/ptsname.c b/Userspace/apps/test/libc_test/stdlib/ptsname.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/ptsname.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/putenv.c b/Userspace/apps/test/libc_test/stdlib/putenv.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/putenv.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/qsort.c b/Userspace/apps/test/libc_test/stdlib/qsort.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/qsort.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/rand.c b/Userspace/apps/test/libc_test/stdlib/rand.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/rand.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/rand_r.c b/Userspace/apps/test/libc_test/stdlib/rand_r.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/rand_r.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/random.c b/Userspace/apps/test/libc_test/stdlib/random.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/random.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/realloc.c b/Userspace/apps/test/libc_test/stdlib/realloc.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/realloc.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/realpath.c b/Userspace/apps/test/libc_test/stdlib/realpath.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/realpath.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/seed48.c b/Userspace/apps/test/libc_test/stdlib/seed48.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/seed48.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/setkey.c b/Userspace/apps/test/libc_test/stdlib/setkey.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/setkey.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/setstate.c b/Userspace/apps/test/libc_test/stdlib/setstate.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/setstate.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/srand.c b/Userspace/apps/test/libc_test/stdlib/srand.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/srand.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/srand48.c b/Userspace/apps/test/libc_test/stdlib/srand48.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/srand48.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/srandom.c b/Userspace/apps/test/libc_test/stdlib/srandom.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/srandom.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/strtod.c b/Userspace/apps/test/libc_test/stdlib/strtod.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/strtod.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/strtol.c b/Userspace/apps/test/libc_test/stdlib/strtol.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/strtol.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/strtoul.c b/Userspace/apps/test/libc_test/stdlib/strtoul.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/strtoul.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/system.c b/Userspace/apps/test/libc_test/stdlib/system.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/system.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/ttyslot.c b/Userspace/apps/test/libc_test/stdlib/ttyslot.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/ttyslot.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/unlockpt.c b/Userspace/apps/test/libc_test/stdlib/unlockpt.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/unlockpt.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/valloc.c b/Userspace/apps/test/libc_test/stdlib/valloc.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/valloc.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/wcstombs.c b/Userspace/apps/test/libc_test/stdlib/wcstombs.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/wcstombs.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/stdlib/wctomb.c b/Userspace/apps/test/libc_test/stdlib/wctomb.c deleted file mode 100644 index 01826b40..00000000 --- a/Userspace/apps/test/libc_test/stdlib/wctomb.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/sys/wait/wait.c b/Userspace/apps/test/libc_test/sys/wait/wait.c deleted file mode 100644 index 3a0fc6be..00000000 --- a/Userspace/apps/test/libc_test/sys/wait/wait.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/sys/wait/waitid.c b/Userspace/apps/test/libc_test/sys/wait/waitid.c deleted file mode 100644 index 3a0fc6be..00000000 --- a/Userspace/apps/test/libc_test/sys/wait/waitid.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/sys/wait/waitpid.c b/Userspace/apps/test/libc_test/sys/wait/waitpid.c deleted file mode 100644 index 3a0fc6be..00000000 --- a/Userspace/apps/test/libc_test/sys/wait/waitpid.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/time/asctime.c b/Userspace/apps/test/libc_test/time/asctime.c deleted file mode 100644 index 64133d72..00000000 --- a/Userspace/apps/test/libc_test/time/asctime.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/time/clock.c b/Userspace/apps/test/libc_test/time/clock.c deleted file mode 100644 index 64133d72..00000000 --- a/Userspace/apps/test/libc_test/time/clock.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/time/clock_getcpuclockid.c b/Userspace/apps/test/libc_test/time/clock_getcpuclockid.c deleted file mode 100644 index 64133d72..00000000 --- a/Userspace/apps/test/libc_test/time/clock_getcpuclockid.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/time/clock_getres.c b/Userspace/apps/test/libc_test/time/clock_getres.c deleted file mode 100644 index 64133d72..00000000 --- a/Userspace/apps/test/libc_test/time/clock_getres.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/time/clock_gettime.c b/Userspace/apps/test/libc_test/time/clock_gettime.c deleted file mode 100644 index 64133d72..00000000 --- a/Userspace/apps/test/libc_test/time/clock_gettime.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/time/clock_nanosleep.c b/Userspace/apps/test/libc_test/time/clock_nanosleep.c deleted file mode 100644 index 64133d72..00000000 --- a/Userspace/apps/test/libc_test/time/clock_nanosleep.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/time/clock_settime.c b/Userspace/apps/test/libc_test/time/clock_settime.c deleted file mode 100644 index 64133d72..00000000 --- a/Userspace/apps/test/libc_test/time/clock_settime.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/time/ctime.c b/Userspace/apps/test/libc_test/time/ctime.c deleted file mode 100644 index 64133d72..00000000 --- a/Userspace/apps/test/libc_test/time/ctime.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/time/difftime.c b/Userspace/apps/test/libc_test/time/difftime.c deleted file mode 100644 index 64133d72..00000000 --- a/Userspace/apps/test/libc_test/time/difftime.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/time/getdate.c b/Userspace/apps/test/libc_test/time/getdate.c deleted file mode 100644 index 64133d72..00000000 --- a/Userspace/apps/test/libc_test/time/getdate.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/time/gmtime.c b/Userspace/apps/test/libc_test/time/gmtime.c deleted file mode 100644 index 64133d72..00000000 --- a/Userspace/apps/test/libc_test/time/gmtime.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/time/gmtime_r.c b/Userspace/apps/test/libc_test/time/gmtime_r.c deleted file mode 100644 index 64133d72..00000000 --- a/Userspace/apps/test/libc_test/time/gmtime_r.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/time/localtime.c b/Userspace/apps/test/libc_test/time/localtime.c deleted file mode 100644 index 64133d72..00000000 --- a/Userspace/apps/test/libc_test/time/localtime.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/time/localtime_r.c b/Userspace/apps/test/libc_test/time/localtime_r.c deleted file mode 100644 index 64133d72..00000000 --- a/Userspace/apps/test/libc_test/time/localtime_r.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/time/mktime.c b/Userspace/apps/test/libc_test/time/mktime.c deleted file mode 100644 index 64133d72..00000000 --- a/Userspace/apps/test/libc_test/time/mktime.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/time/nanosleep.c b/Userspace/apps/test/libc_test/time/nanosleep.c deleted file mode 100644 index 64133d72..00000000 --- a/Userspace/apps/test/libc_test/time/nanosleep.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/time/strftime.c b/Userspace/apps/test/libc_test/time/strftime.c deleted file mode 100644 index 64133d72..00000000 --- a/Userspace/apps/test/libc_test/time/strftime.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/time/strftime_l.c b/Userspace/apps/test/libc_test/time/strftime_l.c deleted file mode 100644 index 64133d72..00000000 --- a/Userspace/apps/test/libc_test/time/strftime_l.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/time/strptime.c b/Userspace/apps/test/libc_test/time/strptime.c deleted file mode 100644 index 64133d72..00000000 --- a/Userspace/apps/test/libc_test/time/strptime.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/time/time.c b/Userspace/apps/test/libc_test/time/time.c deleted file mode 100644 index 64133d72..00000000 --- a/Userspace/apps/test/libc_test/time/time.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/time/timer_create.c b/Userspace/apps/test/libc_test/time/timer_create.c deleted file mode 100644 index 64133d72..00000000 --- a/Userspace/apps/test/libc_test/time/timer_create.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/time/timer_delete.c b/Userspace/apps/test/libc_test/time/timer_delete.c deleted file mode 100644 index 64133d72..00000000 --- a/Userspace/apps/test/libc_test/time/timer_delete.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/time/timer_getoverrun.c b/Userspace/apps/test/libc_test/time/timer_getoverrun.c deleted file mode 100644 index 64133d72..00000000 --- a/Userspace/apps/test/libc_test/time/timer_getoverrun.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/time/timer_gettime.c b/Userspace/apps/test/libc_test/time/timer_gettime.c deleted file mode 100644 index 64133d72..00000000 --- a/Userspace/apps/test/libc_test/time/timer_gettime.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/time/timer_settime.c b/Userspace/apps/test/libc_test/time/timer_settime.c deleted file mode 100644 index 64133d72..00000000 --- a/Userspace/apps/test/libc_test/time/timer_settime.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/time/timespec_get.c b/Userspace/apps/test/libc_test/time/timespec_get.c deleted file mode 100644 index 64133d72..00000000 --- a/Userspace/apps/test/libc_test/time/timespec_get.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/time/tzset.c b/Userspace/apps/test/libc_test/time/tzset.c deleted file mode 100644 index 64133d72..00000000 --- a/Userspace/apps/test/libc_test/time/tzset.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/_exit.c b/Userspace/apps/test/libc_test/unistd/_exit.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/_exit.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/access.c b/Userspace/apps/test/libc_test/unistd/access.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/access.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/alarm.c b/Userspace/apps/test/libc_test/unistd/alarm.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/alarm.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/brk.c b/Userspace/apps/test/libc_test/unistd/brk.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/brk.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/chdir.c b/Userspace/apps/test/libc_test/unistd/chdir.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/chdir.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/chown.c b/Userspace/apps/test/libc_test/unistd/chown.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/chown.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/chroot.c b/Userspace/apps/test/libc_test/unistd/chroot.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/chroot.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/close.c b/Userspace/apps/test/libc_test/unistd/close.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/close.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/confstr.c b/Userspace/apps/test/libc_test/unistd/confstr.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/confstr.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/crypt.c b/Userspace/apps/test/libc_test/unistd/crypt.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/crypt.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/ctermid.c b/Userspace/apps/test/libc_test/unistd/ctermid.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/ctermid.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/cuserid.c b/Userspace/apps/test/libc_test/unistd/cuserid.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/cuserid.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/dup.c b/Userspace/apps/test/libc_test/unistd/dup.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/dup.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/dup2.c b/Userspace/apps/test/libc_test/unistd/dup2.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/dup2.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/encrypt.c b/Userspace/apps/test/libc_test/unistd/encrypt.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/encrypt.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/execl.c b/Userspace/apps/test/libc_test/unistd/execl.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/execl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/execle.c b/Userspace/apps/test/libc_test/unistd/execle.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/execle.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/execlp.c b/Userspace/apps/test/libc_test/unistd/execlp.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/execlp.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/execv.c b/Userspace/apps/test/libc_test/unistd/execv.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/execv.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/execve.c b/Userspace/apps/test/libc_test/unistd/execve.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/execve.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/execvp.c b/Userspace/apps/test/libc_test/unistd/execvp.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/execvp.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/fchdir.c b/Userspace/apps/test/libc_test/unistd/fchdir.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/fchdir.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/fchown.c b/Userspace/apps/test/libc_test/unistd/fchown.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/fchown.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/fdatasync.c b/Userspace/apps/test/libc_test/unistd/fdatasync.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/fdatasync.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/fork.c b/Userspace/apps/test/libc_test/unistd/fork.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/fork.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/fpathconf.c b/Userspace/apps/test/libc_test/unistd/fpathconf.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/fpathconf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/fsync.c b/Userspace/apps/test/libc_test/unistd/fsync.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/fsync.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/ftruncate.c b/Userspace/apps/test/libc_test/unistd/ftruncate.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/ftruncate.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/getcwd.c b/Userspace/apps/test/libc_test/unistd/getcwd.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/getcwd.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/getdtablesize.c b/Userspace/apps/test/libc_test/unistd/getdtablesize.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/getdtablesize.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/getegid.c b/Userspace/apps/test/libc_test/unistd/getegid.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/getegid.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/geteuid.c b/Userspace/apps/test/libc_test/unistd/geteuid.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/geteuid.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/getgid.c b/Userspace/apps/test/libc_test/unistd/getgid.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/getgid.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/getgroups.c b/Userspace/apps/test/libc_test/unistd/getgroups.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/getgroups.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/gethostid.c b/Userspace/apps/test/libc_test/unistd/gethostid.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/gethostid.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/getlogin.c b/Userspace/apps/test/libc_test/unistd/getlogin.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/getlogin.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/getlogin_r.c b/Userspace/apps/test/libc_test/unistd/getlogin_r.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/getlogin_r.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/getopt.c b/Userspace/apps/test/libc_test/unistd/getopt.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/getopt.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/getpagesize.c b/Userspace/apps/test/libc_test/unistd/getpagesize.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/getpagesize.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/getpass.c b/Userspace/apps/test/libc_test/unistd/getpass.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/getpass.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/getpgid.c b/Userspace/apps/test/libc_test/unistd/getpgid.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/getpgid.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/getpgrp.c b/Userspace/apps/test/libc_test/unistd/getpgrp.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/getpgrp.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/getpid.c b/Userspace/apps/test/libc_test/unistd/getpid.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/getpid.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/getppid.c b/Userspace/apps/test/libc_test/unistd/getppid.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/getppid.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/getsid.c b/Userspace/apps/test/libc_test/unistd/getsid.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/getsid.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/getuid.c b/Userspace/apps/test/libc_test/unistd/getuid.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/getuid.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/getwd.c b/Userspace/apps/test/libc_test/unistd/getwd.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/getwd.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/isatty.c b/Userspace/apps/test/libc_test/unistd/isatty.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/isatty.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/lchown.c b/Userspace/apps/test/libc_test/unistd/lchown.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/lchown.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/link.c b/Userspace/apps/test/libc_test/unistd/link.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/link.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/lockf.c b/Userspace/apps/test/libc_test/unistd/lockf.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/lockf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/lseek.c b/Userspace/apps/test/libc_test/unistd/lseek.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/lseek.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/nice.c b/Userspace/apps/test/libc_test/unistd/nice.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/nice.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/pathconf.c b/Userspace/apps/test/libc_test/unistd/pathconf.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/pathconf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/pause.c b/Userspace/apps/test/libc_test/unistd/pause.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/pause.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/pipe.c b/Userspace/apps/test/libc_test/unistd/pipe.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/pipe.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/pread.c b/Userspace/apps/test/libc_test/unistd/pread.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/pread.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/pthread_atfork.c b/Userspace/apps/test/libc_test/unistd/pthread_atfork.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/pthread_atfork.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/pwrite.c b/Userspace/apps/test/libc_test/unistd/pwrite.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/pwrite.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/read.c b/Userspace/apps/test/libc_test/unistd/read.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/read.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/readlink.c b/Userspace/apps/test/libc_test/unistd/readlink.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/readlink.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/rmdir.c b/Userspace/apps/test/libc_test/unistd/rmdir.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/rmdir.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/sbrk.c b/Userspace/apps/test/libc_test/unistd/sbrk.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/sbrk.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/setgid.c b/Userspace/apps/test/libc_test/unistd/setgid.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/setgid.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/setpgid.c b/Userspace/apps/test/libc_test/unistd/setpgid.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/setpgid.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/setpgrp.c b/Userspace/apps/test/libc_test/unistd/setpgrp.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/setpgrp.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/setregid.c b/Userspace/apps/test/libc_test/unistd/setregid.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/setregid.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/setreuid.c b/Userspace/apps/test/libc_test/unistd/setreuid.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/setreuid.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/setsid.c b/Userspace/apps/test/libc_test/unistd/setsid.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/setsid.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/setuid.c b/Userspace/apps/test/libc_test/unistd/setuid.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/setuid.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/sleep.c b/Userspace/apps/test/libc_test/unistd/sleep.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/sleep.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/swab.c b/Userspace/apps/test/libc_test/unistd/swab.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/swab.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/symlink.c b/Userspace/apps/test/libc_test/unistd/symlink.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/symlink.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/sync.c b/Userspace/apps/test/libc_test/unistd/sync.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/sync.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/sysconf.c b/Userspace/apps/test/libc_test/unistd/sysconf.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/sysconf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/tcgetpgrp.c b/Userspace/apps/test/libc_test/unistd/tcgetpgrp.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/tcgetpgrp.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/tcsetpgrp.c b/Userspace/apps/test/libc_test/unistd/tcsetpgrp.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/tcsetpgrp.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/truncate.c b/Userspace/apps/test/libc_test/unistd/truncate.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/truncate.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/ttyname.c b/Userspace/apps/test/libc_test/unistd/ttyname.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/ttyname.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/ttyname_r.c b/Userspace/apps/test/libc_test/unistd/ttyname_r.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/ttyname_r.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/ualarm.c b/Userspace/apps/test/libc_test/unistd/ualarm.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/ualarm.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/unlink.c b/Userspace/apps/test/libc_test/unistd/unlink.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/unlink.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/usleep.c b/Userspace/apps/test/libc_test/unistd/usleep.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/usleep.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/vfork.c b/Userspace/apps/test/libc_test/unistd/vfork.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/vfork.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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/unistd/write.c b/Userspace/apps/test/libc_test/unistd/write.c deleted file mode 100644 index d2b2e83c..00000000 --- a/Userspace/apps/test/libc_test/unistd/write.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - 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