From 9105c63465084a4b23aac387601f4fc32775a480 Mon Sep 17 00:00:00 2001 From: EnderIce2 Date: Mon, 3 Mar 2025 18:25:05 +0000 Subject: [PATCH] refactor(userspace/apps/test): :recycle: move all functions in one file it's just too much... Signed-off-by: EnderIce2 --- Fennix Userspace.code-workspace | 4 +- .../apps/test/libc_test/{assert => }/assert.c | 0 .../{dirent/alphasort.c => dirent.c} | 98 ++++++++++++++++++- .../apps/test/libc_test/dirent/closedir.c | 35 ------- Userspace/apps/test/libc_test/dirent/dirfd.c | 34 ------- .../apps/test/libc_test/dirent/fdopendir.c | 43 -------- .../apps/test/libc_test/dirent/opendir.c | 33 ------- .../test/libc_test/dirent/posix_getdents.c | 27 ----- .../apps/test/libc_test/dirent/readdir.c | 20 ---- .../apps/test/libc_test/dirent/readdir_r.c | 25 ----- .../apps/test/libc_test/dirent/rewinddir.c | 20 ---- .../apps/test/libc_test/dirent/scandir.c | 20 ---- .../apps/test/libc_test/dirent/seekdir.c | 20 ---- .../apps/test/libc_test/dirent/telldir.c | 20 ---- .../{errno/__errno_location.c => errno.c} | 8 ++ .../apps/test/libc_test/errno/strerror.c | 26 ----- .../apps/test/libc_test/{fcntl => }/fcntl.c | 30 +++++- Userspace/apps/test/libc_test/fcntl/creat.c | 20 ---- Userspace/apps/test/libc_test/fcntl/open.c | 20 ---- Userspace/apps/test/libc_test/fcntl/openat.c | 20 ---- .../apps/test/libc_test/fcntl/posix_fadvise.c | 20 ---- .../test/libc_test/fcntl/posix_fallocate.c | 20 ---- .../apps/test/libc_test/locale/duplocale.c | 18 ---- .../apps/test/libc_test/locale/freelocale.c | 18 ---- .../test/libc_test/locale/getlocalename_l.c | 18 ---- .../apps/test/libc_test/locale/localeconv.c | 18 ---- .../apps/test/libc_test/locale/newlocale.c | 18 ---- .../apps/test/libc_test/locale/setlocale.c | 18 ---- .../apps/test/libc_test/locale/uselocale.c | 18 ---- Userspace/apps/test/libc_test/main.c | 17 ++-- .../libc_test/pthread/pthread_attr_destroy.c | 18 ---- .../pthread/pthread_attr_getdetachstate.c | 18 ---- .../pthread/pthread_attr_getguardsize.c | 18 ---- .../pthread/pthread_attr_getinheritsched.c | 18 ---- .../pthread/pthread_attr_getschedparam.c | 18 ---- .../pthread/pthread_attr_getschedpolicy.c | 18 ---- .../libc_test/pthread/pthread_attr_getscope.c | 18 ---- .../pthread/pthread_attr_getstackaddr.c | 18 ---- .../pthread/pthread_attr_getstacksize.c | 18 ---- .../libc_test/pthread/pthread_attr_init.c | 18 ---- .../pthread/pthread_attr_setdetachstate.c | 18 ---- .../pthread/pthread_attr_setguardsize.c | 18 ---- .../pthread/pthread_attr_setinheritsched.c | 18 ---- .../pthread/pthread_attr_setschedparam.c | 18 ---- .../pthread/pthread_attr_setschedpolicy.c | 18 ---- .../libc_test/pthread/pthread_attr_setscope.c | 18 ---- .../pthread/pthread_attr_setstackaddr.c | 18 ---- .../pthread/pthread_attr_setstacksize.c | 18 ---- .../test/libc_test/pthread/pthread_cancel.c | 18 ---- .../libc_test/pthread/pthread_cleanup_pop.c | 18 ---- .../libc_test/pthread/pthread_cleanup_push.c | 18 ---- .../pthread/pthread_cond_broadcast.c | 18 ---- .../libc_test/pthread/pthread_cond_destroy.c | 18 ---- .../libc_test/pthread/pthread_cond_init.c | 18 ---- .../libc_test/pthread/pthread_cond_signal.c | 18 ---- .../pthread/pthread_cond_timedwait.c | 18 ---- .../libc_test/pthread/pthread_cond_wait.c | 18 ---- .../pthread/pthread_condattr_destroy.c | 18 ---- .../pthread/pthread_condattr_getpshared.c | 18 ---- .../libc_test/pthread/pthread_condattr_init.c | 18 ---- .../pthread/pthread_condattr_setpshared.c | 18 ---- .../test/libc_test/pthread/pthread_create.c | 18 ---- .../test/libc_test/pthread/pthread_detach.c | 18 ---- .../test/libc_test/pthread/pthread_equal.c | 18 ---- .../test/libc_test/pthread/pthread_exit.c | 18 ---- .../pthread/pthread_getconcurrency.c | 18 ---- .../libc_test/pthread/pthread_getschedparam.c | 18 ---- .../libc_test/pthread/pthread_getspecific.c | 18 ---- .../test/libc_test/pthread/pthread_join.c | 18 ---- .../libc_test/pthread/pthread_key_create.c | 18 ---- .../libc_test/pthread/pthread_key_delete.c | 18 ---- .../libc_test/pthread/pthread_mutex_destroy.c | 18 ---- .../pthread/pthread_mutex_getprioceiling.c | 18 ---- .../libc_test/pthread/pthread_mutex_init.c | 18 ---- .../libc_test/pthread/pthread_mutex_lock.c | 18 ---- .../pthread/pthread_mutex_setprioceiling.c | 18 ---- .../libc_test/pthread/pthread_mutex_trylock.c | 18 ---- .../libc_test/pthread/pthread_mutex_unlock.c | 18 ---- .../pthread/pthread_mutexattr_destroy.c | 18 ---- .../pthread_mutexattr_getprioceiling.c | 18 ---- .../pthread/pthread_mutexattr_getprotocol.c | 18 ---- .../pthread/pthread_mutexattr_getpshared.c | 18 ---- .../pthread/pthread_mutexattr_gettype.c | 18 ---- .../pthread/pthread_mutexattr_init.c | 18 ---- .../pthread_mutexattr_setprioceiling.c | 18 ---- .../pthread/pthread_mutexattr_setprotocol.c | 18 ---- .../pthread/pthread_mutexattr_setpshared.c | 18 ---- .../pthread/pthread_mutexattr_settype.c | 18 ---- .../test/libc_test/pthread/pthread_once.c | 18 ---- .../pthread/pthread_rwlock_destroy.c | 18 ---- .../libc_test/pthread/pthread_rwlock_init.c | 18 ---- .../libc_test/pthread/pthread_rwlock_rdlock.c | 18 ---- .../pthread/pthread_rwlock_tryrdlock.c | 18 ---- .../pthread/pthread_rwlock_trywrlock.c | 18 ---- .../libc_test/pthread/pthread_rwlock_unlock.c | 18 ---- .../libc_test/pthread/pthread_rwlock_wrlock.c | 18 ---- .../pthread/pthread_rwlockattr_destroy.c | 18 ---- .../pthread/pthread_rwlockattr_getpshared.c | 18 ---- .../pthread/pthread_rwlockattr_init.c | 18 ---- .../pthread/pthread_rwlockattr_setpshared.c | 18 ---- .../test/libc_test/pthread/pthread_self.c | 18 ---- .../pthread/pthread_setcancelstate.c | 18 ---- .../libc_test/pthread/pthread_setcanceltype.c | 18 ---- .../pthread/pthread_setconcurrency.c | 18 ---- .../libc_test/pthread/pthread_setschedparam.c | 18 ---- .../libc_test/pthread/pthread_setspecific.c | 18 ---- .../libc_test/pthread/pthread_testcancel.c | 18 ---- Userspace/apps/test/libc_test/pwd/endpwent.c | 18 ---- Userspace/apps/test/libc_test/pwd/getpwent.c | 18 ---- Userspace/apps/test/libc_test/pwd/getpwnam.c | 18 ---- .../apps/test/libc_test/pwd/getpwnam_r.c | 18 ---- Userspace/apps/test/libc_test/pwd/getpwuid.c | 18 ---- .../apps/test/libc_test/pwd/getpwuid_r.c | 18 ---- Userspace/apps/test/libc_test/pwd/setpwent.c | 18 ---- Userspace/apps/test/libc_test/signal/kill.c | 18 ---- Userspace/apps/test/libc_test/signal/killpg.c | 18 ---- .../apps/test/libc_test/signal/psiginfo.c | 18 ---- .../apps/test/libc_test/signal/psignal.c | 18 ---- .../apps/test/libc_test/signal/pthread_kill.c | 18 ---- .../test/libc_test/signal/pthread_sigmask.c | 18 ---- Userspace/apps/test/libc_test/signal/raise.c | 18 ---- .../apps/test/libc_test/signal/sig2str.c | 18 ---- .../apps/test/libc_test/signal/sigaction.c | 18 ---- .../apps/test/libc_test/signal/sigaddset.c | 18 ---- .../apps/test/libc_test/signal/sigaltstack.c | 18 ---- .../apps/test/libc_test/signal/sigdelset.c | 18 ---- .../apps/test/libc_test/signal/sigemptyset.c | 18 ---- .../apps/test/libc_test/signal/sigfillset.c | 18 ---- .../apps/test/libc_test/signal/sigismember.c | 18 ---- Userspace/apps/test/libc_test/signal/signal.c | 18 ---- .../apps/test/libc_test/signal/sigpending.c | 18 ---- .../apps/test/libc_test/signal/sigprocmask.c | 18 ---- .../apps/test/libc_test/signal/sigqueue.c | 18 ---- .../apps/test/libc_test/signal/sigsuspend.c | 18 ---- .../apps/test/libc_test/signal/sigtimedwait.c | 18 ---- .../apps/test/libc_test/signal/sigwait.c | 18 ---- .../apps/test/libc_test/signal/sigwaitinfo.c | 18 ---- .../apps/test/libc_test/signal/str2sig.c | 18 ---- .../apps/test/libc_test/stdio/clearerr.c | 18 ---- Userspace/apps/test/libc_test/stdio/ctermid.c | 18 ---- Userspace/apps/test/libc_test/stdio/dprintf.c | 18 ---- Userspace/apps/test/libc_test/stdio/fclose.c | 18 ---- Userspace/apps/test/libc_test/stdio/fdopen.c | 18 ---- Userspace/apps/test/libc_test/stdio/feof.c | 18 ---- Userspace/apps/test/libc_test/stdio/ferror.c | 18 ---- Userspace/apps/test/libc_test/stdio/fflush.c | 18 ---- Userspace/apps/test/libc_test/stdio/fgetc.c | 18 ---- Userspace/apps/test/libc_test/stdio/fgetpos.c | 18 ---- Userspace/apps/test/libc_test/stdio/fgets.c | 18 ---- Userspace/apps/test/libc_test/stdio/fileno.c | 18 ---- .../apps/test/libc_test/stdio/flockfile.c | 18 ---- .../apps/test/libc_test/stdio/fmemopen.c | 18 ---- Userspace/apps/test/libc_test/stdio/fopen.c | 18 ---- Userspace/apps/test/libc_test/stdio/fprintf.c | 18 ---- Userspace/apps/test/libc_test/stdio/fputc.c | 18 ---- Userspace/apps/test/libc_test/stdio/fputs.c | 18 ---- Userspace/apps/test/libc_test/stdio/fread.c | 18 ---- Userspace/apps/test/libc_test/stdio/freopen.c | 18 ---- Userspace/apps/test/libc_test/stdio/fscanf.c | 18 ---- Userspace/apps/test/libc_test/stdio/fseek.c | 18 ---- Userspace/apps/test/libc_test/stdio/fseeko.c | 18 ---- Userspace/apps/test/libc_test/stdio/fsetpos.c | 18 ---- Userspace/apps/test/libc_test/stdio/ftell.c | 18 ---- Userspace/apps/test/libc_test/stdio/ftello.c | 18 ---- .../apps/test/libc_test/stdio/ftrylockfile.c | 18 ---- .../apps/test/libc_test/stdio/funlockfile.c | 18 ---- Userspace/apps/test/libc_test/stdio/fwrite.c | 18 ---- Userspace/apps/test/libc_test/stdio/getc.c | 18 ---- .../apps/test/libc_test/stdio/getc_unlocked.c | 18 ---- Userspace/apps/test/libc_test/stdio/getchar.c | 18 ---- .../test/libc_test/stdio/getchar_unlocked.c | 18 ---- .../apps/test/libc_test/stdio/getdelim.c | 18 ---- Userspace/apps/test/libc_test/stdio/getline.c | 18 ---- .../test/libc_test/stdio/open_memstream.c | 18 ---- Userspace/apps/test/libc_test/stdio/pclose.c | 18 ---- Userspace/apps/test/libc_test/stdio/perror.c | 18 ---- Userspace/apps/test/libc_test/stdio/popen.c | 18 ---- Userspace/apps/test/libc_test/stdio/printf.c | 18 ---- Userspace/apps/test/libc_test/stdio/putc.c | 18 ---- .../apps/test/libc_test/stdio/putc_unlocked.c | 18 ---- Userspace/apps/test/libc_test/stdio/putchar.c | 18 ---- .../test/libc_test/stdio/putchar_unlocked.c | 18 ---- Userspace/apps/test/libc_test/stdio/puts.c | 18 ---- Userspace/apps/test/libc_test/stdio/remove.c | 18 ---- Userspace/apps/test/libc_test/stdio/rename.c | 18 ---- .../apps/test/libc_test/stdio/renameat.c | 18 ---- Userspace/apps/test/libc_test/stdio/rewind.c | 18 ---- Userspace/apps/test/libc_test/stdio/scanf.c | 18 ---- Userspace/apps/test/libc_test/stdio/setbuf.c | 18 ---- Userspace/apps/test/libc_test/stdio/setvbuf.c | 18 ---- .../apps/test/libc_test/stdio/snprintf.c | 18 ---- Userspace/apps/test/libc_test/stdio/sprintf.c | 18 ---- Userspace/apps/test/libc_test/stdio/sscanf.c | 18 ---- Userspace/apps/test/libc_test/stdio/tmpfile.c | 18 ---- Userspace/apps/test/libc_test/stdio/tmpnam.c | 18 ---- Userspace/apps/test/libc_test/stdio/ungetc.c | 18 ---- .../apps/test/libc_test/stdio/vdprintf.c | 18 ---- .../apps/test/libc_test/stdio/vfprintf.c | 18 ---- Userspace/apps/test/libc_test/stdio/vfscanf.c | 18 ---- Userspace/apps/test/libc_test/stdio/vprintf.c | 18 ---- Userspace/apps/test/libc_test/stdio/vscanf.c | 18 ---- .../apps/test/libc_test/stdio/vsnprintf.c | 18 ---- .../apps/test/libc_test/stdio/vsprintf.c | 18 ---- Userspace/apps/test/libc_test/stdio/vsscanf.c | 18 ---- Userspace/apps/test/libc_test/stdlib/a64l.c | 18 ---- Userspace/apps/test/libc_test/stdlib/abort.c | 18 ---- Userspace/apps/test/libc_test/stdlib/abs.c | 18 ---- Userspace/apps/test/libc_test/stdlib/atexit.c | 18 ---- Userspace/apps/test/libc_test/stdlib/atof.c | 18 ---- Userspace/apps/test/libc_test/stdlib/atoi.c | 18 ---- Userspace/apps/test/libc_test/stdlib/atol.c | 18 ---- .../apps/test/libc_test/stdlib/bsearch.c | 18 ---- Userspace/apps/test/libc_test/stdlib/calloc.c | 18 ---- Userspace/apps/test/libc_test/stdlib/div.c | 18 ---- .../apps/test/libc_test/stdlib/drand48.c | 18 ---- Userspace/apps/test/libc_test/stdlib/ecvt.c | 18 ---- .../apps/test/libc_test/stdlib/erand48.c | 18 ---- Userspace/apps/test/libc_test/stdlib/exit.c | 18 ---- Userspace/apps/test/libc_test/stdlib/fcvt.c | 18 ---- Userspace/apps/test/libc_test/stdlib/free.c | 18 ---- Userspace/apps/test/libc_test/stdlib/gcvt.c | 18 ---- Userspace/apps/test/libc_test/stdlib/getenv.c | 18 ---- .../apps/test/libc_test/stdlib/getsubopt.c | 18 ---- .../apps/test/libc_test/stdlib/grantpt.c | 18 ---- .../apps/test/libc_test/stdlib/initstate.c | 18 ---- .../apps/test/libc_test/stdlib/jrand48.c | 18 ---- Userspace/apps/test/libc_test/stdlib/l64a.c | 18 ---- Userspace/apps/test/libc_test/stdlib/labs.c | 18 ---- .../apps/test/libc_test/stdlib/lcong48.c | 18 ---- Userspace/apps/test/libc_test/stdlib/ldiv.c | 18 ---- .../apps/test/libc_test/stdlib/lrand48.c | 18 ---- Userspace/apps/test/libc_test/stdlib/malloc.c | 18 ---- Userspace/apps/test/libc_test/stdlib/mblen.c | 18 ---- .../apps/test/libc_test/stdlib/mbstowcs.c | 18 ---- Userspace/apps/test/libc_test/stdlib/mbtowc.c | 18 ---- .../apps/test/libc_test/stdlib/mkstemp.c | 18 ---- Userspace/apps/test/libc_test/stdlib/mktemp.c | 18 ---- .../apps/test/libc_test/stdlib/mrand48.c | 18 ---- .../apps/test/libc_test/stdlib/nrand48.c | 18 ---- .../apps/test/libc_test/stdlib/ptsname.c | 18 ---- Userspace/apps/test/libc_test/stdlib/putenv.c | 18 ---- Userspace/apps/test/libc_test/stdlib/qsort.c | 18 ---- Userspace/apps/test/libc_test/stdlib/rand.c | 18 ---- Userspace/apps/test/libc_test/stdlib/rand_r.c | 18 ---- Userspace/apps/test/libc_test/stdlib/random.c | 18 ---- .../apps/test/libc_test/stdlib/realloc.c | 18 ---- .../apps/test/libc_test/stdlib/realpath.c | 18 ---- Userspace/apps/test/libc_test/stdlib/seed48.c | 18 ---- Userspace/apps/test/libc_test/stdlib/setkey.c | 18 ---- .../apps/test/libc_test/stdlib/setstate.c | 18 ---- Userspace/apps/test/libc_test/stdlib/srand.c | 18 ---- .../apps/test/libc_test/stdlib/srand48.c | 18 ---- .../apps/test/libc_test/stdlib/srandom.c | 18 ---- Userspace/apps/test/libc_test/stdlib/strtod.c | 18 ---- Userspace/apps/test/libc_test/stdlib/strtol.c | 18 ---- .../apps/test/libc_test/stdlib/strtoul.c | 18 ---- Userspace/apps/test/libc_test/stdlib/system.c | 18 ---- .../apps/test/libc_test/stdlib/ttyslot.c | 18 ---- .../apps/test/libc_test/stdlib/unlockpt.c | 18 ---- Userspace/apps/test/libc_test/stdlib/valloc.c | 18 ---- .../apps/test/libc_test/stdlib/wcstombs.c | 18 ---- Userspace/apps/test/libc_test/stdlib/wctomb.c | 18 ---- Userspace/apps/test/libc_test/sys/wait/wait.c | 18 ---- .../apps/test/libc_test/sys/wait/waitid.c | 18 ---- .../apps/test/libc_test/sys/wait/waitpid.c | 18 ---- Userspace/apps/test/libc_test/time/asctime.c | 18 ---- Userspace/apps/test/libc_test/time/clock.c | 18 ---- .../test/libc_test/time/clock_getcpuclockid.c | 18 ---- .../apps/test/libc_test/time/clock_getres.c | 18 ---- .../apps/test/libc_test/time/clock_gettime.c | 18 ---- .../test/libc_test/time/clock_nanosleep.c | 18 ---- .../apps/test/libc_test/time/clock_settime.c | 18 ---- Userspace/apps/test/libc_test/time/ctime.c | 18 ---- Userspace/apps/test/libc_test/time/difftime.c | 18 ---- Userspace/apps/test/libc_test/time/getdate.c | 18 ---- Userspace/apps/test/libc_test/time/gmtime.c | 18 ---- Userspace/apps/test/libc_test/time/gmtime_r.c | 18 ---- .../apps/test/libc_test/time/localtime.c | 18 ---- .../apps/test/libc_test/time/localtime_r.c | 18 ---- Userspace/apps/test/libc_test/time/mktime.c | 18 ---- .../apps/test/libc_test/time/nanosleep.c | 18 ---- Userspace/apps/test/libc_test/time/strftime.c | 18 ---- .../apps/test/libc_test/time/strftime_l.c | 18 ---- Userspace/apps/test/libc_test/time/strptime.c | 18 ---- Userspace/apps/test/libc_test/time/time.c | 18 ---- .../apps/test/libc_test/time/timer_create.c | 18 ---- .../apps/test/libc_test/time/timer_delete.c | 18 ---- .../test/libc_test/time/timer_getoverrun.c | 18 ---- .../apps/test/libc_test/time/timer_gettime.c | 18 ---- .../apps/test/libc_test/time/timer_settime.c | 18 ---- .../apps/test/libc_test/time/timespec_get.c | 18 ---- Userspace/apps/test/libc_test/time/tzset.c | 18 ---- Userspace/apps/test/libc_test/unistd/_exit.c | 18 ---- Userspace/apps/test/libc_test/unistd/access.c | 18 ---- Userspace/apps/test/libc_test/unistd/alarm.c | 18 ---- Userspace/apps/test/libc_test/unistd/brk.c | 18 ---- Userspace/apps/test/libc_test/unistd/chdir.c | 18 ---- Userspace/apps/test/libc_test/unistd/chown.c | 18 ---- Userspace/apps/test/libc_test/unistd/chroot.c | 18 ---- Userspace/apps/test/libc_test/unistd/close.c | 18 ---- .../apps/test/libc_test/unistd/confstr.c | 18 ---- Userspace/apps/test/libc_test/unistd/crypt.c | 18 ---- .../apps/test/libc_test/unistd/ctermid.c | 18 ---- .../apps/test/libc_test/unistd/cuserid.c | 18 ---- Userspace/apps/test/libc_test/unistd/dup.c | 18 ---- Userspace/apps/test/libc_test/unistd/dup2.c | 18 ---- .../apps/test/libc_test/unistd/encrypt.c | 18 ---- Userspace/apps/test/libc_test/unistd/execl.c | 18 ---- Userspace/apps/test/libc_test/unistd/execle.c | 18 ---- Userspace/apps/test/libc_test/unistd/execlp.c | 18 ---- Userspace/apps/test/libc_test/unistd/execv.c | 18 ---- Userspace/apps/test/libc_test/unistd/execve.c | 18 ---- Userspace/apps/test/libc_test/unistd/execvp.c | 18 ---- Userspace/apps/test/libc_test/unistd/fchdir.c | 18 ---- Userspace/apps/test/libc_test/unistd/fchown.c | 18 ---- .../apps/test/libc_test/unistd/fdatasync.c | 18 ---- Userspace/apps/test/libc_test/unistd/fork.c | 18 ---- .../apps/test/libc_test/unistd/fpathconf.c | 18 ---- Userspace/apps/test/libc_test/unistd/fsync.c | 18 ---- .../apps/test/libc_test/unistd/ftruncate.c | 18 ---- Userspace/apps/test/libc_test/unistd/getcwd.c | 18 ---- .../test/libc_test/unistd/getdtablesize.c | 18 ---- .../apps/test/libc_test/unistd/getegid.c | 18 ---- .../apps/test/libc_test/unistd/geteuid.c | 18 ---- Userspace/apps/test/libc_test/unistd/getgid.c | 18 ---- .../apps/test/libc_test/unistd/getgroups.c | 18 ---- .../apps/test/libc_test/unistd/gethostid.c | 18 ---- .../apps/test/libc_test/unistd/getlogin.c | 18 ---- .../apps/test/libc_test/unistd/getlogin_r.c | 18 ---- Userspace/apps/test/libc_test/unistd/getopt.c | 18 ---- .../apps/test/libc_test/unistd/getpagesize.c | 18 ---- .../apps/test/libc_test/unistd/getpass.c | 18 ---- .../apps/test/libc_test/unistd/getpgid.c | 18 ---- .../apps/test/libc_test/unistd/getpgrp.c | 18 ---- Userspace/apps/test/libc_test/unistd/getpid.c | 18 ---- .../apps/test/libc_test/unistd/getppid.c | 18 ---- Userspace/apps/test/libc_test/unistd/getsid.c | 18 ---- Userspace/apps/test/libc_test/unistd/getuid.c | 18 ---- Userspace/apps/test/libc_test/unistd/getwd.c | 18 ---- Userspace/apps/test/libc_test/unistd/isatty.c | 18 ---- Userspace/apps/test/libc_test/unistd/lchown.c | 18 ---- Userspace/apps/test/libc_test/unistd/link.c | 18 ---- Userspace/apps/test/libc_test/unistd/lockf.c | 18 ---- Userspace/apps/test/libc_test/unistd/lseek.c | 18 ---- Userspace/apps/test/libc_test/unistd/nice.c | 18 ---- .../apps/test/libc_test/unistd/pathconf.c | 18 ---- Userspace/apps/test/libc_test/unistd/pause.c | 18 ---- Userspace/apps/test/libc_test/unistd/pipe.c | 18 ---- Userspace/apps/test/libc_test/unistd/pread.c | 18 ---- .../test/libc_test/unistd/pthread_atfork.c | 18 ---- Userspace/apps/test/libc_test/unistd/pwrite.c | 18 ---- Userspace/apps/test/libc_test/unistd/read.c | 18 ---- .../apps/test/libc_test/unistd/readlink.c | 18 ---- Userspace/apps/test/libc_test/unistd/rmdir.c | 18 ---- Userspace/apps/test/libc_test/unistd/sbrk.c | 18 ---- Userspace/apps/test/libc_test/unistd/setgid.c | 18 ---- .../apps/test/libc_test/unistd/setpgid.c | 18 ---- .../apps/test/libc_test/unistd/setpgrp.c | 18 ---- .../apps/test/libc_test/unistd/setregid.c | 18 ---- .../apps/test/libc_test/unistd/setreuid.c | 18 ---- Userspace/apps/test/libc_test/unistd/setsid.c | 18 ---- Userspace/apps/test/libc_test/unistd/setuid.c | 18 ---- Userspace/apps/test/libc_test/unistd/sleep.c | 18 ---- Userspace/apps/test/libc_test/unistd/swab.c | 18 ---- .../apps/test/libc_test/unistd/symlink.c | 18 ---- Userspace/apps/test/libc_test/unistd/sync.c | 18 ---- .../apps/test/libc_test/unistd/sysconf.c | 18 ---- .../apps/test/libc_test/unistd/tcgetpgrp.c | 18 ---- .../apps/test/libc_test/unistd/tcsetpgrp.c | 18 ---- .../apps/test/libc_test/unistd/truncate.c | 18 ---- .../apps/test/libc_test/unistd/ttyname.c | 18 ---- .../apps/test/libc_test/unistd/ttyname_r.c | 18 ---- Userspace/apps/test/libc_test/unistd/ualarm.c | 18 ---- Userspace/apps/test/libc_test/unistd/unlink.c | 18 ---- Userspace/apps/test/libc_test/unistd/usleep.c | 18 ---- Userspace/apps/test/libc_test/unistd/vfork.c | 18 ---- Userspace/apps/test/libc_test/unistd/write.c | 18 ---- 377 files changed, 143 insertions(+), 6809 deletions(-) rename Userspace/apps/test/libc_test/{assert => }/assert.c (100%) rename Userspace/apps/test/libc_test/{dirent/alphasort.c => dirent.c} (50%) delete mode 100644 Userspace/apps/test/libc_test/dirent/closedir.c delete mode 100644 Userspace/apps/test/libc_test/dirent/dirfd.c delete mode 100644 Userspace/apps/test/libc_test/dirent/fdopendir.c delete mode 100644 Userspace/apps/test/libc_test/dirent/opendir.c delete mode 100644 Userspace/apps/test/libc_test/dirent/posix_getdents.c delete mode 100644 Userspace/apps/test/libc_test/dirent/readdir.c delete mode 100644 Userspace/apps/test/libc_test/dirent/readdir_r.c delete mode 100644 Userspace/apps/test/libc_test/dirent/rewinddir.c delete mode 100644 Userspace/apps/test/libc_test/dirent/scandir.c delete mode 100644 Userspace/apps/test/libc_test/dirent/seekdir.c delete mode 100644 Userspace/apps/test/libc_test/dirent/telldir.c rename Userspace/apps/test/libc_test/{errno/__errno_location.c => errno.c} (87%) delete mode 100644 Userspace/apps/test/libc_test/errno/strerror.c rename Userspace/apps/test/libc_test/{fcntl => }/fcntl.c (76%) delete mode 100644 Userspace/apps/test/libc_test/fcntl/creat.c delete mode 100644 Userspace/apps/test/libc_test/fcntl/open.c delete mode 100644 Userspace/apps/test/libc_test/fcntl/openat.c delete mode 100644 Userspace/apps/test/libc_test/fcntl/posix_fadvise.c delete mode 100644 Userspace/apps/test/libc_test/fcntl/posix_fallocate.c delete mode 100644 Userspace/apps/test/libc_test/locale/duplocale.c delete mode 100644 Userspace/apps/test/libc_test/locale/freelocale.c delete mode 100644 Userspace/apps/test/libc_test/locale/getlocalename_l.c delete mode 100644 Userspace/apps/test/libc_test/locale/localeconv.c delete mode 100644 Userspace/apps/test/libc_test/locale/newlocale.c delete mode 100644 Userspace/apps/test/libc_test/locale/setlocale.c delete mode 100644 Userspace/apps/test/libc_test/locale/uselocale.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_attr_destroy.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_attr_getdetachstate.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_attr_getguardsize.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_attr_getinheritsched.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_attr_getschedparam.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_attr_getschedpolicy.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_attr_getscope.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_attr_getstackaddr.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_attr_getstacksize.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_attr_init.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_attr_setdetachstate.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_attr_setguardsize.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_attr_setinheritsched.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_attr_setschedparam.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_attr_setschedpolicy.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_attr_setscope.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_attr_setstackaddr.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_attr_setstacksize.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_cancel.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_cleanup_pop.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_cleanup_push.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_cond_broadcast.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_cond_destroy.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_cond_init.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_cond_signal.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_cond_timedwait.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_cond_wait.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_condattr_destroy.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_condattr_getpshared.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_condattr_init.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_condattr_setpshared.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_create.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_detach.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_equal.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_exit.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_getconcurrency.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_getschedparam.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_getspecific.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_join.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_key_create.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_key_delete.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_mutex_destroy.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_mutex_getprioceiling.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_mutex_init.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_mutex_lock.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_mutex_setprioceiling.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_mutex_trylock.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_mutex_unlock.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_mutexattr_destroy.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_mutexattr_getprioceiling.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_mutexattr_getprotocol.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_mutexattr_getpshared.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_mutexattr_gettype.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_mutexattr_init.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_mutexattr_setprioceiling.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_mutexattr_setprotocol.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_mutexattr_setpshared.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_mutexattr_settype.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_once.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_rwlock_destroy.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_rwlock_init.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_rwlock_rdlock.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_rwlock_tryrdlock.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_rwlock_trywrlock.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_rwlock_unlock.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_rwlock_wrlock.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_rwlockattr_destroy.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_rwlockattr_getpshared.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_rwlockattr_init.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_rwlockattr_setpshared.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_self.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_setcancelstate.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_setcanceltype.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_setconcurrency.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_setschedparam.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_setspecific.c delete mode 100644 Userspace/apps/test/libc_test/pthread/pthread_testcancel.c delete mode 100644 Userspace/apps/test/libc_test/pwd/endpwent.c delete mode 100644 Userspace/apps/test/libc_test/pwd/getpwent.c delete mode 100644 Userspace/apps/test/libc_test/pwd/getpwnam.c delete mode 100644 Userspace/apps/test/libc_test/pwd/getpwnam_r.c delete mode 100644 Userspace/apps/test/libc_test/pwd/getpwuid.c delete mode 100644 Userspace/apps/test/libc_test/pwd/getpwuid_r.c delete mode 100644 Userspace/apps/test/libc_test/pwd/setpwent.c delete mode 100644 Userspace/apps/test/libc_test/signal/kill.c delete mode 100644 Userspace/apps/test/libc_test/signal/killpg.c delete mode 100644 Userspace/apps/test/libc_test/signal/psiginfo.c delete mode 100644 Userspace/apps/test/libc_test/signal/psignal.c delete mode 100644 Userspace/apps/test/libc_test/signal/pthread_kill.c delete mode 100644 Userspace/apps/test/libc_test/signal/pthread_sigmask.c delete mode 100644 Userspace/apps/test/libc_test/signal/raise.c delete mode 100644 Userspace/apps/test/libc_test/signal/sig2str.c delete mode 100644 Userspace/apps/test/libc_test/signal/sigaction.c delete mode 100644 Userspace/apps/test/libc_test/signal/sigaddset.c delete mode 100644 Userspace/apps/test/libc_test/signal/sigaltstack.c delete mode 100644 Userspace/apps/test/libc_test/signal/sigdelset.c delete mode 100644 Userspace/apps/test/libc_test/signal/sigemptyset.c delete mode 100644 Userspace/apps/test/libc_test/signal/sigfillset.c delete mode 100644 Userspace/apps/test/libc_test/signal/sigismember.c delete mode 100644 Userspace/apps/test/libc_test/signal/signal.c delete mode 100644 Userspace/apps/test/libc_test/signal/sigpending.c delete mode 100644 Userspace/apps/test/libc_test/signal/sigprocmask.c delete mode 100644 Userspace/apps/test/libc_test/signal/sigqueue.c delete mode 100644 Userspace/apps/test/libc_test/signal/sigsuspend.c delete mode 100644 Userspace/apps/test/libc_test/signal/sigtimedwait.c delete mode 100644 Userspace/apps/test/libc_test/signal/sigwait.c delete mode 100644 Userspace/apps/test/libc_test/signal/sigwaitinfo.c delete mode 100644 Userspace/apps/test/libc_test/signal/str2sig.c delete mode 100644 Userspace/apps/test/libc_test/stdio/clearerr.c delete mode 100644 Userspace/apps/test/libc_test/stdio/ctermid.c delete mode 100644 Userspace/apps/test/libc_test/stdio/dprintf.c delete mode 100644 Userspace/apps/test/libc_test/stdio/fclose.c delete mode 100644 Userspace/apps/test/libc_test/stdio/fdopen.c delete mode 100644 Userspace/apps/test/libc_test/stdio/feof.c delete mode 100644 Userspace/apps/test/libc_test/stdio/ferror.c delete mode 100644 Userspace/apps/test/libc_test/stdio/fflush.c delete mode 100644 Userspace/apps/test/libc_test/stdio/fgetc.c delete mode 100644 Userspace/apps/test/libc_test/stdio/fgetpos.c delete mode 100644 Userspace/apps/test/libc_test/stdio/fgets.c delete mode 100644 Userspace/apps/test/libc_test/stdio/fileno.c delete mode 100644 Userspace/apps/test/libc_test/stdio/flockfile.c delete mode 100644 Userspace/apps/test/libc_test/stdio/fmemopen.c delete mode 100644 Userspace/apps/test/libc_test/stdio/fopen.c delete mode 100644 Userspace/apps/test/libc_test/stdio/fprintf.c delete mode 100644 Userspace/apps/test/libc_test/stdio/fputc.c delete mode 100644 Userspace/apps/test/libc_test/stdio/fputs.c delete mode 100644 Userspace/apps/test/libc_test/stdio/fread.c delete mode 100644 Userspace/apps/test/libc_test/stdio/freopen.c delete mode 100644 Userspace/apps/test/libc_test/stdio/fscanf.c delete mode 100644 Userspace/apps/test/libc_test/stdio/fseek.c delete mode 100644 Userspace/apps/test/libc_test/stdio/fseeko.c delete mode 100644 Userspace/apps/test/libc_test/stdio/fsetpos.c delete mode 100644 Userspace/apps/test/libc_test/stdio/ftell.c delete mode 100644 Userspace/apps/test/libc_test/stdio/ftello.c delete mode 100644 Userspace/apps/test/libc_test/stdio/ftrylockfile.c delete mode 100644 Userspace/apps/test/libc_test/stdio/funlockfile.c delete mode 100644 Userspace/apps/test/libc_test/stdio/fwrite.c delete mode 100644 Userspace/apps/test/libc_test/stdio/getc.c delete mode 100644 Userspace/apps/test/libc_test/stdio/getc_unlocked.c delete mode 100644 Userspace/apps/test/libc_test/stdio/getchar.c delete mode 100644 Userspace/apps/test/libc_test/stdio/getchar_unlocked.c delete mode 100644 Userspace/apps/test/libc_test/stdio/getdelim.c delete mode 100644 Userspace/apps/test/libc_test/stdio/getline.c delete mode 100644 Userspace/apps/test/libc_test/stdio/open_memstream.c delete mode 100644 Userspace/apps/test/libc_test/stdio/pclose.c delete mode 100644 Userspace/apps/test/libc_test/stdio/perror.c delete mode 100644 Userspace/apps/test/libc_test/stdio/popen.c delete mode 100644 Userspace/apps/test/libc_test/stdio/printf.c delete mode 100644 Userspace/apps/test/libc_test/stdio/putc.c delete mode 100644 Userspace/apps/test/libc_test/stdio/putc_unlocked.c delete mode 100644 Userspace/apps/test/libc_test/stdio/putchar.c delete mode 100644 Userspace/apps/test/libc_test/stdio/putchar_unlocked.c delete mode 100644 Userspace/apps/test/libc_test/stdio/puts.c delete mode 100644 Userspace/apps/test/libc_test/stdio/remove.c delete mode 100644 Userspace/apps/test/libc_test/stdio/rename.c delete mode 100644 Userspace/apps/test/libc_test/stdio/renameat.c delete mode 100644 Userspace/apps/test/libc_test/stdio/rewind.c delete mode 100644 Userspace/apps/test/libc_test/stdio/scanf.c delete mode 100644 Userspace/apps/test/libc_test/stdio/setbuf.c delete mode 100644 Userspace/apps/test/libc_test/stdio/setvbuf.c delete mode 100644 Userspace/apps/test/libc_test/stdio/snprintf.c delete mode 100644 Userspace/apps/test/libc_test/stdio/sprintf.c delete mode 100644 Userspace/apps/test/libc_test/stdio/sscanf.c delete mode 100644 Userspace/apps/test/libc_test/stdio/tmpfile.c delete mode 100644 Userspace/apps/test/libc_test/stdio/tmpnam.c delete mode 100644 Userspace/apps/test/libc_test/stdio/ungetc.c delete mode 100644 Userspace/apps/test/libc_test/stdio/vdprintf.c delete mode 100644 Userspace/apps/test/libc_test/stdio/vfprintf.c delete mode 100644 Userspace/apps/test/libc_test/stdio/vfscanf.c delete mode 100644 Userspace/apps/test/libc_test/stdio/vprintf.c delete mode 100644 Userspace/apps/test/libc_test/stdio/vscanf.c delete mode 100644 Userspace/apps/test/libc_test/stdio/vsnprintf.c delete mode 100644 Userspace/apps/test/libc_test/stdio/vsprintf.c delete mode 100644 Userspace/apps/test/libc_test/stdio/vsscanf.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/a64l.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/abort.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/abs.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/atexit.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/atof.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/atoi.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/atol.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/bsearch.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/calloc.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/div.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/drand48.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/ecvt.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/erand48.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/exit.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/fcvt.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/free.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/gcvt.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/getenv.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/getsubopt.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/grantpt.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/initstate.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/jrand48.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/l64a.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/labs.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/lcong48.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/ldiv.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/lrand48.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/malloc.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/mblen.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/mbstowcs.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/mbtowc.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/mkstemp.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/mktemp.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/mrand48.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/nrand48.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/ptsname.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/putenv.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/qsort.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/rand.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/rand_r.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/random.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/realloc.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/realpath.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/seed48.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/setkey.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/setstate.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/srand.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/srand48.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/srandom.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/strtod.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/strtol.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/strtoul.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/system.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/ttyslot.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/unlockpt.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/valloc.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/wcstombs.c delete mode 100644 Userspace/apps/test/libc_test/stdlib/wctomb.c delete mode 100644 Userspace/apps/test/libc_test/sys/wait/wait.c delete mode 100644 Userspace/apps/test/libc_test/sys/wait/waitid.c delete mode 100644 Userspace/apps/test/libc_test/sys/wait/waitpid.c delete mode 100644 Userspace/apps/test/libc_test/time/asctime.c delete mode 100644 Userspace/apps/test/libc_test/time/clock.c delete mode 100644 Userspace/apps/test/libc_test/time/clock_getcpuclockid.c delete mode 100644 Userspace/apps/test/libc_test/time/clock_getres.c delete mode 100644 Userspace/apps/test/libc_test/time/clock_gettime.c delete mode 100644 Userspace/apps/test/libc_test/time/clock_nanosleep.c delete mode 100644 Userspace/apps/test/libc_test/time/clock_settime.c delete mode 100644 Userspace/apps/test/libc_test/time/ctime.c delete mode 100644 Userspace/apps/test/libc_test/time/difftime.c delete mode 100644 Userspace/apps/test/libc_test/time/getdate.c delete mode 100644 Userspace/apps/test/libc_test/time/gmtime.c delete mode 100644 Userspace/apps/test/libc_test/time/gmtime_r.c delete mode 100644 Userspace/apps/test/libc_test/time/localtime.c delete mode 100644 Userspace/apps/test/libc_test/time/localtime_r.c delete mode 100644 Userspace/apps/test/libc_test/time/mktime.c delete mode 100644 Userspace/apps/test/libc_test/time/nanosleep.c delete mode 100644 Userspace/apps/test/libc_test/time/strftime.c delete mode 100644 Userspace/apps/test/libc_test/time/strftime_l.c delete mode 100644 Userspace/apps/test/libc_test/time/strptime.c delete mode 100644 Userspace/apps/test/libc_test/time/time.c delete mode 100644 Userspace/apps/test/libc_test/time/timer_create.c delete mode 100644 Userspace/apps/test/libc_test/time/timer_delete.c delete mode 100644 Userspace/apps/test/libc_test/time/timer_getoverrun.c delete mode 100644 Userspace/apps/test/libc_test/time/timer_gettime.c delete mode 100644 Userspace/apps/test/libc_test/time/timer_settime.c delete mode 100644 Userspace/apps/test/libc_test/time/timespec_get.c delete mode 100644 Userspace/apps/test/libc_test/time/tzset.c delete mode 100644 Userspace/apps/test/libc_test/unistd/_exit.c delete mode 100644 Userspace/apps/test/libc_test/unistd/access.c delete mode 100644 Userspace/apps/test/libc_test/unistd/alarm.c delete mode 100644 Userspace/apps/test/libc_test/unistd/brk.c delete mode 100644 Userspace/apps/test/libc_test/unistd/chdir.c delete mode 100644 Userspace/apps/test/libc_test/unistd/chown.c delete mode 100644 Userspace/apps/test/libc_test/unistd/chroot.c delete mode 100644 Userspace/apps/test/libc_test/unistd/close.c delete mode 100644 Userspace/apps/test/libc_test/unistd/confstr.c delete mode 100644 Userspace/apps/test/libc_test/unistd/crypt.c delete mode 100644 Userspace/apps/test/libc_test/unistd/ctermid.c delete mode 100644 Userspace/apps/test/libc_test/unistd/cuserid.c delete mode 100644 Userspace/apps/test/libc_test/unistd/dup.c delete mode 100644 Userspace/apps/test/libc_test/unistd/dup2.c delete mode 100644 Userspace/apps/test/libc_test/unistd/encrypt.c delete mode 100644 Userspace/apps/test/libc_test/unistd/execl.c delete mode 100644 Userspace/apps/test/libc_test/unistd/execle.c delete mode 100644 Userspace/apps/test/libc_test/unistd/execlp.c delete mode 100644 Userspace/apps/test/libc_test/unistd/execv.c delete mode 100644 Userspace/apps/test/libc_test/unistd/execve.c delete mode 100644 Userspace/apps/test/libc_test/unistd/execvp.c delete mode 100644 Userspace/apps/test/libc_test/unistd/fchdir.c delete mode 100644 Userspace/apps/test/libc_test/unistd/fchown.c delete mode 100644 Userspace/apps/test/libc_test/unistd/fdatasync.c delete mode 100644 Userspace/apps/test/libc_test/unistd/fork.c delete mode 100644 Userspace/apps/test/libc_test/unistd/fpathconf.c delete mode 100644 Userspace/apps/test/libc_test/unistd/fsync.c delete mode 100644 Userspace/apps/test/libc_test/unistd/ftruncate.c delete mode 100644 Userspace/apps/test/libc_test/unistd/getcwd.c delete mode 100644 Userspace/apps/test/libc_test/unistd/getdtablesize.c delete mode 100644 Userspace/apps/test/libc_test/unistd/getegid.c delete mode 100644 Userspace/apps/test/libc_test/unistd/geteuid.c delete mode 100644 Userspace/apps/test/libc_test/unistd/getgid.c delete mode 100644 Userspace/apps/test/libc_test/unistd/getgroups.c delete mode 100644 Userspace/apps/test/libc_test/unistd/gethostid.c delete mode 100644 Userspace/apps/test/libc_test/unistd/getlogin.c delete mode 100644 Userspace/apps/test/libc_test/unistd/getlogin_r.c delete mode 100644 Userspace/apps/test/libc_test/unistd/getopt.c delete mode 100644 Userspace/apps/test/libc_test/unistd/getpagesize.c delete mode 100644 Userspace/apps/test/libc_test/unistd/getpass.c delete mode 100644 Userspace/apps/test/libc_test/unistd/getpgid.c delete mode 100644 Userspace/apps/test/libc_test/unistd/getpgrp.c delete mode 100644 Userspace/apps/test/libc_test/unistd/getpid.c delete mode 100644 Userspace/apps/test/libc_test/unistd/getppid.c delete mode 100644 Userspace/apps/test/libc_test/unistd/getsid.c delete mode 100644 Userspace/apps/test/libc_test/unistd/getuid.c delete mode 100644 Userspace/apps/test/libc_test/unistd/getwd.c delete mode 100644 Userspace/apps/test/libc_test/unistd/isatty.c delete mode 100644 Userspace/apps/test/libc_test/unistd/lchown.c delete mode 100644 Userspace/apps/test/libc_test/unistd/link.c delete mode 100644 Userspace/apps/test/libc_test/unistd/lockf.c delete mode 100644 Userspace/apps/test/libc_test/unistd/lseek.c delete mode 100644 Userspace/apps/test/libc_test/unistd/nice.c delete mode 100644 Userspace/apps/test/libc_test/unistd/pathconf.c delete mode 100644 Userspace/apps/test/libc_test/unistd/pause.c delete mode 100644 Userspace/apps/test/libc_test/unistd/pipe.c delete mode 100644 Userspace/apps/test/libc_test/unistd/pread.c delete mode 100644 Userspace/apps/test/libc_test/unistd/pthread_atfork.c delete mode 100644 Userspace/apps/test/libc_test/unistd/pwrite.c delete mode 100644 Userspace/apps/test/libc_test/unistd/read.c delete mode 100644 Userspace/apps/test/libc_test/unistd/readlink.c delete mode 100644 Userspace/apps/test/libc_test/unistd/rmdir.c delete mode 100644 Userspace/apps/test/libc_test/unistd/sbrk.c delete mode 100644 Userspace/apps/test/libc_test/unistd/setgid.c delete mode 100644 Userspace/apps/test/libc_test/unistd/setpgid.c delete mode 100644 Userspace/apps/test/libc_test/unistd/setpgrp.c delete mode 100644 Userspace/apps/test/libc_test/unistd/setregid.c delete mode 100644 Userspace/apps/test/libc_test/unistd/setreuid.c delete mode 100644 Userspace/apps/test/libc_test/unistd/setsid.c delete mode 100644 Userspace/apps/test/libc_test/unistd/setuid.c delete mode 100644 Userspace/apps/test/libc_test/unistd/sleep.c delete mode 100644 Userspace/apps/test/libc_test/unistd/swab.c delete mode 100644 Userspace/apps/test/libc_test/unistd/symlink.c delete mode 100644 Userspace/apps/test/libc_test/unistd/sync.c delete mode 100644 Userspace/apps/test/libc_test/unistd/sysconf.c delete mode 100644 Userspace/apps/test/libc_test/unistd/tcgetpgrp.c delete mode 100644 Userspace/apps/test/libc_test/unistd/tcsetpgrp.c delete mode 100644 Userspace/apps/test/libc_test/unistd/truncate.c delete mode 100644 Userspace/apps/test/libc_test/unistd/ttyname.c delete mode 100644 Userspace/apps/test/libc_test/unistd/ttyname_r.c delete mode 100644 Userspace/apps/test/libc_test/unistd/ualarm.c delete mode 100644 Userspace/apps/test/libc_test/unistd/unlink.c delete mode 100644 Userspace/apps/test/libc_test/unistd/usleep.c delete mode 100644 Userspace/apps/test/libc_test/unistd/vfork.c delete mode 100644 Userspace/apps/test/libc_test/unistd/write.c 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