From b54a32ba7a5941b83ae55765363416447c814ee7 Mon Sep 17 00:00:00 2001 From: EnderIce2 Date: Mon, 27 Jan 2025 23:20:54 +0200 Subject: [PATCH] userspace: add stub libc test program Signed-off-by: EnderIce2 --- Userspace/apps/test/libc_test/Makefile | 36 +++++++++++++++++++ Userspace/apps/test/libc_test/assert/assert.c | 18 ++++++++++ .../apps/test/libc_test/dirent/alphasort.c | 18 ++++++++++ .../apps/test/libc_test/dirent/closedir.c | 18 ++++++++++ Userspace/apps/test/libc_test/dirent/dirfd.c | 18 ++++++++++ .../apps/test/libc_test/dirent/fdopendir.c | 18 ++++++++++ .../apps/test/libc_test/dirent/opendir.c | 18 ++++++++++ .../test/libc_test/dirent/posix_getdents.c | 18 ++++++++++ .../apps/test/libc_test/dirent/readdir.c | 18 ++++++++++ .../apps/test/libc_test/dirent/readdir_r.c | 18 ++++++++++ .../apps/test/libc_test/dirent/rewinddir.c | 18 ++++++++++ .../apps/test/libc_test/dirent/scandir.c | 18 ++++++++++ .../apps/test/libc_test/dirent/seekdir.c | 18 ++++++++++ .../apps/test/libc_test/dirent/telldir.c | 18 ++++++++++ .../test/libc_test/errno/__errno_location.c | 18 ++++++++++ .../apps/test/libc_test/errno/strerror.c | 18 ++++++++++ Userspace/apps/test/libc_test/fcntl/creat.c | 18 ++++++++++ Userspace/apps/test/libc_test/fcntl/fcntl.c | 18 ++++++++++ Userspace/apps/test/libc_test/fcntl/open.c | 18 ++++++++++ Userspace/apps/test/libc_test/fcntl/openat.c | 18 ++++++++++ .../apps/test/libc_test/fcntl/posix_fadvise.c | 18 ++++++++++ .../test/libc_test/fcntl/posix_fallocate.c | 18 ++++++++++ .../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 | 20 +++++++++++ Userspace/apps/test/libc_test/math/acos.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/acosf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/acosh.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/acoshf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/acoshl.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/acosl.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/asin.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/asinf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/asinh.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/asinhf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/asinhl.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/asinl.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/atan.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/atan2.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/atan2f.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/atan2l.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/atanf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/atanh.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/atanhf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/atanhl.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/atanl.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/cbrt.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/cbrtf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/cbrtl.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/ceil.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/ceilf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/ceill.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/copysign.c | 18 ++++++++++ .../apps/test/libc_test/math/copysignf.c | 18 ++++++++++ .../apps/test/libc_test/math/copysignl.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/cos.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/cosf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/cosh.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/coshf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/coshl.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/cosl.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/erf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/erfc.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/erfcf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/erfcl.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/erff.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/erfl.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/exp.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/exp2.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/exp2f.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/exp2l.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/expf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/expl.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/expm1.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/expm1f.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/expm1l.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/fabs.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/fabsf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/fabsl.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/fdim.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/fdimf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/fdiml.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/floor.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/floorf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/floorl.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/fma.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/fmaf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/fmal.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/fmax.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/fmaxf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/fmaxl.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/fmin.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/fminf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/fminl.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/fmod.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/fmodf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/fmodl.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/frexp.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/frexpf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/frexpl.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/hypot.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/hypotf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/hypotl.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/ilogb.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/ilogbf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/ilogbl.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/j0.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/j1.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/jn.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/ldexp.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/ldexpf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/ldexpl.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/lgamma.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/lgammaf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/lgammal.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/llrint.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/llrintf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/llrintl.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/llround.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/llroundf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/llroundl.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/log.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/log10.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/log10f.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/log10l.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/log1p.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/log1pf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/log1pl.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/log2.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/log2f.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/log2l.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/logb.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/logbf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/logbl.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/logf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/logl.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/lrint.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/lrintf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/lrintl.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/lround.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/lroundf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/lroundl.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/modf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/modff.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/modfl.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/nan.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/nanf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/nanl.c | 18 ++++++++++ .../apps/test/libc_test/math/nearbyint.c | 18 ++++++++++ .../apps/test/libc_test/math/nearbyintf.c | 18 ++++++++++ .../apps/test/libc_test/math/nearbyintl.c | 18 ++++++++++ .../apps/test/libc_test/math/nextafter.c | 18 ++++++++++ .../apps/test/libc_test/math/nextafterf.c | 18 ++++++++++ .../apps/test/libc_test/math/nextafterl.c | 18 ++++++++++ .../apps/test/libc_test/math/nexttoward.c | 18 ++++++++++ .../apps/test/libc_test/math/nexttowardf.c | 18 ++++++++++ .../apps/test/libc_test/math/nexttowardl.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/pow.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/powf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/powl.c | 18 ++++++++++ .../apps/test/libc_test/math/remainder.c | 18 ++++++++++ .../apps/test/libc_test/math/remainderf.c | 18 ++++++++++ .../apps/test/libc_test/math/remainderl.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/remquo.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/remquof.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/remquol.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/rint.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/rintf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/rintl.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/round.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/roundf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/roundl.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/scalb.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/scalbln.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/scalblnf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/scalblnl.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/scalbn.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/scalbnf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/scalbnl.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/sin.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/sinf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/sinh.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/sinhf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/sinhl.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/sinl.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/sqrt.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/sqrtf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/sqrtl.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/tan.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/tanf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/tanh.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/tanhf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/tanhl.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/tanl.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/tgamma.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/tgammaf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/tgammal.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/trunc.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/truncf.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/truncl.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/y0.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/y1.c | 18 ++++++++++ Userspace/apps/test/libc_test/math/yn.c | 18 ++++++++++ .../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 ++++++++++ .../apps/test/libc_test/string/memccpy.c | 18 ++++++++++ Userspace/apps/test/libc_test/string/memchr.c | 18 ++++++++++ Userspace/apps/test/libc_test/string/memcmp.c | 18 ++++++++++ Userspace/apps/test/libc_test/string/memcpy.c | 18 ++++++++++ Userspace/apps/test/libc_test/string/memmem.c | 18 ++++++++++ .../apps/test/libc_test/string/memmove.c | 18 ++++++++++ Userspace/apps/test/libc_test/string/memset.c | 18 ++++++++++ Userspace/apps/test/libc_test/string/stpcpy.c | 18 ++++++++++ .../apps/test/libc_test/string/stpncpy.c | 18 ++++++++++ Userspace/apps/test/libc_test/string/strcat.c | 18 ++++++++++ Userspace/apps/test/libc_test/string/strchr.c | 18 ++++++++++ Userspace/apps/test/libc_test/string/strcmp.c | 18 ++++++++++ .../apps/test/libc_test/string/strcoll.c | 18 ++++++++++ .../apps/test/libc_test/string/strcoll_l.c | 18 ++++++++++ Userspace/apps/test/libc_test/string/strcpy.c | 18 ++++++++++ .../apps/test/libc_test/string/strcspn.c | 18 ++++++++++ Userspace/apps/test/libc_test/string/strdup.c | 18 ++++++++++ .../apps/test/libc_test/string/strerror.c | 18 ++++++++++ .../apps/test/libc_test/string/strerror_l.c | 18 ++++++++++ .../apps/test/libc_test/string/strerror_r.c | 18 ++++++++++ .../apps/test/libc_test/string/strlcat.c | 18 ++++++++++ .../apps/test/libc_test/string/strlcpy.c | 18 ++++++++++ Userspace/apps/test/libc_test/string/strlen.c | 18 ++++++++++ .../apps/test/libc_test/string/strncat.c | 18 ++++++++++ .../apps/test/libc_test/string/strncmp.c | 18 ++++++++++ .../apps/test/libc_test/string/strncpy.c | 18 ++++++++++ .../apps/test/libc_test/string/strndup.c | 18 ++++++++++ .../apps/test/libc_test/string/strnlen.c | 18 ++++++++++ .../apps/test/libc_test/string/strpbrk.c | 18 ++++++++++ .../apps/test/libc_test/string/strrchr.c | 18 ++++++++++ .../apps/test/libc_test/string/strsignal.c | 18 ++++++++++ Userspace/apps/test/libc_test/string/strspn.c | 18 ++++++++++ Userspace/apps/test/libc_test/string/strstr.c | 18 ++++++++++ Userspace/apps/test/libc_test/string/strtok.c | 18 ++++++++++ .../apps/test/libc_test/string/strtok_r.c | 18 ++++++++++ .../apps/test/libc_test/string/strxfrm.c | 18 ++++++++++ .../apps/test/libc_test/string/strxfrm_l.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/template.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 ++++++++++ 593 files changed, 10694 insertions(+) create mode 100644 Userspace/apps/test/libc_test/Makefile create mode 100644 Userspace/apps/test/libc_test/assert/assert.c create mode 100644 Userspace/apps/test/libc_test/dirent/alphasort.c create mode 100644 Userspace/apps/test/libc_test/dirent/closedir.c create mode 100644 Userspace/apps/test/libc_test/dirent/dirfd.c create mode 100644 Userspace/apps/test/libc_test/dirent/fdopendir.c create mode 100644 Userspace/apps/test/libc_test/dirent/opendir.c create mode 100644 Userspace/apps/test/libc_test/dirent/posix_getdents.c create mode 100644 Userspace/apps/test/libc_test/dirent/readdir.c create mode 100644 Userspace/apps/test/libc_test/dirent/readdir_r.c create mode 100644 Userspace/apps/test/libc_test/dirent/rewinddir.c create mode 100644 Userspace/apps/test/libc_test/dirent/scandir.c create mode 100644 Userspace/apps/test/libc_test/dirent/seekdir.c create mode 100644 Userspace/apps/test/libc_test/dirent/telldir.c create mode 100644 Userspace/apps/test/libc_test/errno/__errno_location.c create mode 100644 Userspace/apps/test/libc_test/errno/strerror.c create mode 100644 Userspace/apps/test/libc_test/fcntl/creat.c create mode 100644 Userspace/apps/test/libc_test/fcntl/fcntl.c create mode 100644 Userspace/apps/test/libc_test/fcntl/open.c create mode 100644 Userspace/apps/test/libc_test/fcntl/openat.c create mode 100644 Userspace/apps/test/libc_test/fcntl/posix_fadvise.c create mode 100644 Userspace/apps/test/libc_test/fcntl/posix_fallocate.c create mode 100644 Userspace/apps/test/libc_test/locale/duplocale.c create mode 100644 Userspace/apps/test/libc_test/locale/freelocale.c create mode 100644 Userspace/apps/test/libc_test/locale/getlocalename_l.c create mode 100644 Userspace/apps/test/libc_test/locale/localeconv.c create mode 100644 Userspace/apps/test/libc_test/locale/newlocale.c create mode 100644 Userspace/apps/test/libc_test/locale/setlocale.c create mode 100644 Userspace/apps/test/libc_test/locale/uselocale.c create mode 100644 Userspace/apps/test/libc_test/main.c create mode 100644 Userspace/apps/test/libc_test/math/acos.c create mode 100644 Userspace/apps/test/libc_test/math/acosf.c create mode 100644 Userspace/apps/test/libc_test/math/acosh.c create mode 100644 Userspace/apps/test/libc_test/math/acoshf.c create mode 100644 Userspace/apps/test/libc_test/math/acoshl.c create mode 100644 Userspace/apps/test/libc_test/math/acosl.c create mode 100644 Userspace/apps/test/libc_test/math/asin.c create mode 100644 Userspace/apps/test/libc_test/math/asinf.c create mode 100644 Userspace/apps/test/libc_test/math/asinh.c create mode 100644 Userspace/apps/test/libc_test/math/asinhf.c create mode 100644 Userspace/apps/test/libc_test/math/asinhl.c create mode 100644 Userspace/apps/test/libc_test/math/asinl.c create mode 100644 Userspace/apps/test/libc_test/math/atan.c create mode 100644 Userspace/apps/test/libc_test/math/atan2.c create mode 100644 Userspace/apps/test/libc_test/math/atan2f.c create mode 100644 Userspace/apps/test/libc_test/math/atan2l.c create mode 100644 Userspace/apps/test/libc_test/math/atanf.c create mode 100644 Userspace/apps/test/libc_test/math/atanh.c create mode 100644 Userspace/apps/test/libc_test/math/atanhf.c create mode 100644 Userspace/apps/test/libc_test/math/atanhl.c create mode 100644 Userspace/apps/test/libc_test/math/atanl.c create mode 100644 Userspace/apps/test/libc_test/math/cbrt.c create mode 100644 Userspace/apps/test/libc_test/math/cbrtf.c create mode 100644 Userspace/apps/test/libc_test/math/cbrtl.c create mode 100644 Userspace/apps/test/libc_test/math/ceil.c create mode 100644 Userspace/apps/test/libc_test/math/ceilf.c create mode 100644 Userspace/apps/test/libc_test/math/ceill.c create mode 100644 Userspace/apps/test/libc_test/math/copysign.c create mode 100644 Userspace/apps/test/libc_test/math/copysignf.c create mode 100644 Userspace/apps/test/libc_test/math/copysignl.c create mode 100644 Userspace/apps/test/libc_test/math/cos.c create mode 100644 Userspace/apps/test/libc_test/math/cosf.c create mode 100644 Userspace/apps/test/libc_test/math/cosh.c create mode 100644 Userspace/apps/test/libc_test/math/coshf.c create mode 100644 Userspace/apps/test/libc_test/math/coshl.c create mode 100644 Userspace/apps/test/libc_test/math/cosl.c create mode 100644 Userspace/apps/test/libc_test/math/erf.c create mode 100644 Userspace/apps/test/libc_test/math/erfc.c create mode 100644 Userspace/apps/test/libc_test/math/erfcf.c create mode 100644 Userspace/apps/test/libc_test/math/erfcl.c create mode 100644 Userspace/apps/test/libc_test/math/erff.c create mode 100644 Userspace/apps/test/libc_test/math/erfl.c create mode 100644 Userspace/apps/test/libc_test/math/exp.c create mode 100644 Userspace/apps/test/libc_test/math/exp2.c create mode 100644 Userspace/apps/test/libc_test/math/exp2f.c create mode 100644 Userspace/apps/test/libc_test/math/exp2l.c create mode 100644 Userspace/apps/test/libc_test/math/expf.c create mode 100644 Userspace/apps/test/libc_test/math/expl.c create mode 100644 Userspace/apps/test/libc_test/math/expm1.c create mode 100644 Userspace/apps/test/libc_test/math/expm1f.c create mode 100644 Userspace/apps/test/libc_test/math/expm1l.c create mode 100644 Userspace/apps/test/libc_test/math/fabs.c create mode 100644 Userspace/apps/test/libc_test/math/fabsf.c create mode 100644 Userspace/apps/test/libc_test/math/fabsl.c create mode 100644 Userspace/apps/test/libc_test/math/fdim.c create mode 100644 Userspace/apps/test/libc_test/math/fdimf.c create mode 100644 Userspace/apps/test/libc_test/math/fdiml.c create mode 100644 Userspace/apps/test/libc_test/math/floor.c create mode 100644 Userspace/apps/test/libc_test/math/floorf.c create mode 100644 Userspace/apps/test/libc_test/math/floorl.c create mode 100644 Userspace/apps/test/libc_test/math/fma.c create mode 100644 Userspace/apps/test/libc_test/math/fmaf.c create mode 100644 Userspace/apps/test/libc_test/math/fmal.c create mode 100644 Userspace/apps/test/libc_test/math/fmax.c create mode 100644 Userspace/apps/test/libc_test/math/fmaxf.c create mode 100644 Userspace/apps/test/libc_test/math/fmaxl.c create mode 100644 Userspace/apps/test/libc_test/math/fmin.c create mode 100644 Userspace/apps/test/libc_test/math/fminf.c create mode 100644 Userspace/apps/test/libc_test/math/fminl.c create mode 100644 Userspace/apps/test/libc_test/math/fmod.c create mode 100644 Userspace/apps/test/libc_test/math/fmodf.c create mode 100644 Userspace/apps/test/libc_test/math/fmodl.c create mode 100644 Userspace/apps/test/libc_test/math/frexp.c create mode 100644 Userspace/apps/test/libc_test/math/frexpf.c create mode 100644 Userspace/apps/test/libc_test/math/frexpl.c create mode 100644 Userspace/apps/test/libc_test/math/hypot.c create mode 100644 Userspace/apps/test/libc_test/math/hypotf.c create mode 100644 Userspace/apps/test/libc_test/math/hypotl.c create mode 100644 Userspace/apps/test/libc_test/math/ilogb.c create mode 100644 Userspace/apps/test/libc_test/math/ilogbf.c create mode 100644 Userspace/apps/test/libc_test/math/ilogbl.c create mode 100644 Userspace/apps/test/libc_test/math/j0.c create mode 100644 Userspace/apps/test/libc_test/math/j1.c create mode 100644 Userspace/apps/test/libc_test/math/jn.c create mode 100644 Userspace/apps/test/libc_test/math/ldexp.c create mode 100644 Userspace/apps/test/libc_test/math/ldexpf.c create mode 100644 Userspace/apps/test/libc_test/math/ldexpl.c create mode 100644 Userspace/apps/test/libc_test/math/lgamma.c create mode 100644 Userspace/apps/test/libc_test/math/lgammaf.c create mode 100644 Userspace/apps/test/libc_test/math/lgammal.c create mode 100644 Userspace/apps/test/libc_test/math/llrint.c create mode 100644 Userspace/apps/test/libc_test/math/llrintf.c create mode 100644 Userspace/apps/test/libc_test/math/llrintl.c create mode 100644 Userspace/apps/test/libc_test/math/llround.c create mode 100644 Userspace/apps/test/libc_test/math/llroundf.c create mode 100644 Userspace/apps/test/libc_test/math/llroundl.c create mode 100644 Userspace/apps/test/libc_test/math/log.c create mode 100644 Userspace/apps/test/libc_test/math/log10.c create mode 100644 Userspace/apps/test/libc_test/math/log10f.c create mode 100644 Userspace/apps/test/libc_test/math/log10l.c create mode 100644 Userspace/apps/test/libc_test/math/log1p.c create mode 100644 Userspace/apps/test/libc_test/math/log1pf.c create mode 100644 Userspace/apps/test/libc_test/math/log1pl.c create mode 100644 Userspace/apps/test/libc_test/math/log2.c create mode 100644 Userspace/apps/test/libc_test/math/log2f.c create mode 100644 Userspace/apps/test/libc_test/math/log2l.c create mode 100644 Userspace/apps/test/libc_test/math/logb.c create mode 100644 Userspace/apps/test/libc_test/math/logbf.c create mode 100644 Userspace/apps/test/libc_test/math/logbl.c create mode 100644 Userspace/apps/test/libc_test/math/logf.c create mode 100644 Userspace/apps/test/libc_test/math/logl.c create mode 100644 Userspace/apps/test/libc_test/math/lrint.c create mode 100644 Userspace/apps/test/libc_test/math/lrintf.c create mode 100644 Userspace/apps/test/libc_test/math/lrintl.c create mode 100644 Userspace/apps/test/libc_test/math/lround.c create mode 100644 Userspace/apps/test/libc_test/math/lroundf.c create mode 100644 Userspace/apps/test/libc_test/math/lroundl.c create mode 100644 Userspace/apps/test/libc_test/math/modf.c create mode 100644 Userspace/apps/test/libc_test/math/modff.c create mode 100644 Userspace/apps/test/libc_test/math/modfl.c create mode 100644 Userspace/apps/test/libc_test/math/nan.c create mode 100644 Userspace/apps/test/libc_test/math/nanf.c create mode 100644 Userspace/apps/test/libc_test/math/nanl.c create mode 100644 Userspace/apps/test/libc_test/math/nearbyint.c create mode 100644 Userspace/apps/test/libc_test/math/nearbyintf.c create mode 100644 Userspace/apps/test/libc_test/math/nearbyintl.c create mode 100644 Userspace/apps/test/libc_test/math/nextafter.c create mode 100644 Userspace/apps/test/libc_test/math/nextafterf.c create mode 100644 Userspace/apps/test/libc_test/math/nextafterl.c create mode 100644 Userspace/apps/test/libc_test/math/nexttoward.c create mode 100644 Userspace/apps/test/libc_test/math/nexttowardf.c create mode 100644 Userspace/apps/test/libc_test/math/nexttowardl.c create mode 100644 Userspace/apps/test/libc_test/math/pow.c create mode 100644 Userspace/apps/test/libc_test/math/powf.c create mode 100644 Userspace/apps/test/libc_test/math/powl.c create mode 100644 Userspace/apps/test/libc_test/math/remainder.c create mode 100644 Userspace/apps/test/libc_test/math/remainderf.c create mode 100644 Userspace/apps/test/libc_test/math/remainderl.c create mode 100644 Userspace/apps/test/libc_test/math/remquo.c create mode 100644 Userspace/apps/test/libc_test/math/remquof.c create mode 100644 Userspace/apps/test/libc_test/math/remquol.c create mode 100644 Userspace/apps/test/libc_test/math/rint.c create mode 100644 Userspace/apps/test/libc_test/math/rintf.c create mode 100644 Userspace/apps/test/libc_test/math/rintl.c create mode 100644 Userspace/apps/test/libc_test/math/round.c create mode 100644 Userspace/apps/test/libc_test/math/roundf.c create mode 100644 Userspace/apps/test/libc_test/math/roundl.c create mode 100644 Userspace/apps/test/libc_test/math/scalb.c create mode 100644 Userspace/apps/test/libc_test/math/scalbln.c create mode 100644 Userspace/apps/test/libc_test/math/scalblnf.c create mode 100644 Userspace/apps/test/libc_test/math/scalblnl.c create mode 100644 Userspace/apps/test/libc_test/math/scalbn.c create mode 100644 Userspace/apps/test/libc_test/math/scalbnf.c create mode 100644 Userspace/apps/test/libc_test/math/scalbnl.c create mode 100644 Userspace/apps/test/libc_test/math/sin.c create mode 100644 Userspace/apps/test/libc_test/math/sinf.c create mode 100644 Userspace/apps/test/libc_test/math/sinh.c create mode 100644 Userspace/apps/test/libc_test/math/sinhf.c create mode 100644 Userspace/apps/test/libc_test/math/sinhl.c create mode 100644 Userspace/apps/test/libc_test/math/sinl.c create mode 100644 Userspace/apps/test/libc_test/math/sqrt.c create mode 100644 Userspace/apps/test/libc_test/math/sqrtf.c create mode 100644 Userspace/apps/test/libc_test/math/sqrtl.c create mode 100644 Userspace/apps/test/libc_test/math/tan.c create mode 100644 Userspace/apps/test/libc_test/math/tanf.c create mode 100644 Userspace/apps/test/libc_test/math/tanh.c create mode 100644 Userspace/apps/test/libc_test/math/tanhf.c create mode 100644 Userspace/apps/test/libc_test/math/tanhl.c create mode 100644 Userspace/apps/test/libc_test/math/tanl.c create mode 100644 Userspace/apps/test/libc_test/math/tgamma.c create mode 100644 Userspace/apps/test/libc_test/math/tgammaf.c create mode 100644 Userspace/apps/test/libc_test/math/tgammal.c create mode 100644 Userspace/apps/test/libc_test/math/trunc.c create mode 100644 Userspace/apps/test/libc_test/math/truncf.c create mode 100644 Userspace/apps/test/libc_test/math/truncl.c create mode 100644 Userspace/apps/test/libc_test/math/y0.c create mode 100644 Userspace/apps/test/libc_test/math/y1.c create mode 100644 Userspace/apps/test/libc_test/math/yn.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_attr_destroy.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_attr_getdetachstate.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_attr_getguardsize.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_attr_getinheritsched.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_attr_getschedparam.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_attr_getschedpolicy.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_attr_getscope.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_attr_getstackaddr.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_attr_getstacksize.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_attr_init.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_attr_setdetachstate.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_attr_setguardsize.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_attr_setinheritsched.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_attr_setschedparam.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_attr_setschedpolicy.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_attr_setscope.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_attr_setstackaddr.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_attr_setstacksize.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_cancel.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_cleanup_pop.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_cleanup_push.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_cond_broadcast.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_cond_destroy.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_cond_init.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_cond_signal.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_cond_timedwait.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_cond_wait.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_condattr_destroy.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_condattr_getpshared.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_condattr_init.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_condattr_setpshared.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_create.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_detach.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_equal.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_exit.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_getconcurrency.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_getschedparam.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_getspecific.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_join.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_key_create.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_key_delete.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_mutex_destroy.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_mutex_getprioceiling.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_mutex_init.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_mutex_lock.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_mutex_setprioceiling.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_mutex_trylock.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_mutex_unlock.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_mutexattr_destroy.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_mutexattr_getprioceiling.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_mutexattr_getprotocol.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_mutexattr_getpshared.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_mutexattr_gettype.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_mutexattr_init.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_mutexattr_setprioceiling.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_mutexattr_setprotocol.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_mutexattr_setpshared.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_mutexattr_settype.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_once.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_rwlock_destroy.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_rwlock_init.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_rwlock_rdlock.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_rwlock_tryrdlock.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_rwlock_trywrlock.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_rwlock_unlock.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_rwlock_wrlock.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_rwlockattr_destroy.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_rwlockattr_getpshared.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_rwlockattr_init.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_rwlockattr_setpshared.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_self.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_setcancelstate.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_setcanceltype.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_setconcurrency.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_setschedparam.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_setspecific.c create mode 100644 Userspace/apps/test/libc_test/pthread/pthread_testcancel.c create mode 100644 Userspace/apps/test/libc_test/pwd/endpwent.c create mode 100644 Userspace/apps/test/libc_test/pwd/getpwent.c create mode 100644 Userspace/apps/test/libc_test/pwd/getpwnam.c create mode 100644 Userspace/apps/test/libc_test/pwd/getpwnam_r.c create mode 100644 Userspace/apps/test/libc_test/pwd/getpwuid.c create mode 100644 Userspace/apps/test/libc_test/pwd/getpwuid_r.c create mode 100644 Userspace/apps/test/libc_test/pwd/setpwent.c create mode 100644 Userspace/apps/test/libc_test/signal/kill.c create mode 100644 Userspace/apps/test/libc_test/signal/killpg.c create mode 100644 Userspace/apps/test/libc_test/signal/psiginfo.c create mode 100644 Userspace/apps/test/libc_test/signal/psignal.c create mode 100644 Userspace/apps/test/libc_test/signal/pthread_kill.c create mode 100644 Userspace/apps/test/libc_test/signal/pthread_sigmask.c create mode 100644 Userspace/apps/test/libc_test/signal/raise.c create mode 100644 Userspace/apps/test/libc_test/signal/sig2str.c create mode 100644 Userspace/apps/test/libc_test/signal/sigaction.c create mode 100644 Userspace/apps/test/libc_test/signal/sigaddset.c create mode 100644 Userspace/apps/test/libc_test/signal/sigaltstack.c create mode 100644 Userspace/apps/test/libc_test/signal/sigdelset.c create mode 100644 Userspace/apps/test/libc_test/signal/sigemptyset.c create mode 100644 Userspace/apps/test/libc_test/signal/sigfillset.c create mode 100644 Userspace/apps/test/libc_test/signal/sigismember.c create mode 100644 Userspace/apps/test/libc_test/signal/signal.c create mode 100644 Userspace/apps/test/libc_test/signal/sigpending.c create mode 100644 Userspace/apps/test/libc_test/signal/sigprocmask.c create mode 100644 Userspace/apps/test/libc_test/signal/sigqueue.c create mode 100644 Userspace/apps/test/libc_test/signal/sigsuspend.c create mode 100644 Userspace/apps/test/libc_test/signal/sigtimedwait.c create mode 100644 Userspace/apps/test/libc_test/signal/sigwait.c create mode 100644 Userspace/apps/test/libc_test/signal/sigwaitinfo.c create mode 100644 Userspace/apps/test/libc_test/signal/str2sig.c create mode 100644 Userspace/apps/test/libc_test/stdio/clearerr.c create mode 100644 Userspace/apps/test/libc_test/stdio/ctermid.c create mode 100644 Userspace/apps/test/libc_test/stdio/dprintf.c create mode 100644 Userspace/apps/test/libc_test/stdio/fclose.c create mode 100644 Userspace/apps/test/libc_test/stdio/fdopen.c create mode 100644 Userspace/apps/test/libc_test/stdio/feof.c create mode 100644 Userspace/apps/test/libc_test/stdio/ferror.c create mode 100644 Userspace/apps/test/libc_test/stdio/fflush.c create mode 100644 Userspace/apps/test/libc_test/stdio/fgetc.c create mode 100644 Userspace/apps/test/libc_test/stdio/fgetpos.c create mode 100644 Userspace/apps/test/libc_test/stdio/fgets.c create mode 100644 Userspace/apps/test/libc_test/stdio/fileno.c create mode 100644 Userspace/apps/test/libc_test/stdio/flockfile.c create mode 100644 Userspace/apps/test/libc_test/stdio/fmemopen.c create mode 100644 Userspace/apps/test/libc_test/stdio/fopen.c create mode 100644 Userspace/apps/test/libc_test/stdio/fprintf.c create mode 100644 Userspace/apps/test/libc_test/stdio/fputc.c create mode 100644 Userspace/apps/test/libc_test/stdio/fputs.c create mode 100644 Userspace/apps/test/libc_test/stdio/fread.c create mode 100644 Userspace/apps/test/libc_test/stdio/freopen.c create mode 100644 Userspace/apps/test/libc_test/stdio/fscanf.c create mode 100644 Userspace/apps/test/libc_test/stdio/fseek.c create mode 100644 Userspace/apps/test/libc_test/stdio/fseeko.c create mode 100644 Userspace/apps/test/libc_test/stdio/fsetpos.c create mode 100644 Userspace/apps/test/libc_test/stdio/ftell.c create mode 100644 Userspace/apps/test/libc_test/stdio/ftello.c create mode 100644 Userspace/apps/test/libc_test/stdio/ftrylockfile.c create mode 100644 Userspace/apps/test/libc_test/stdio/funlockfile.c create mode 100644 Userspace/apps/test/libc_test/stdio/fwrite.c create mode 100644 Userspace/apps/test/libc_test/stdio/getc.c create mode 100644 Userspace/apps/test/libc_test/stdio/getc_unlocked.c create mode 100644 Userspace/apps/test/libc_test/stdio/getchar.c create mode 100644 Userspace/apps/test/libc_test/stdio/getchar_unlocked.c create mode 100644 Userspace/apps/test/libc_test/stdio/getdelim.c create mode 100644 Userspace/apps/test/libc_test/stdio/getline.c create mode 100644 Userspace/apps/test/libc_test/stdio/open_memstream.c create mode 100644 Userspace/apps/test/libc_test/stdio/pclose.c create mode 100644 Userspace/apps/test/libc_test/stdio/perror.c create mode 100644 Userspace/apps/test/libc_test/stdio/popen.c create mode 100644 Userspace/apps/test/libc_test/stdio/printf.c create mode 100644 Userspace/apps/test/libc_test/stdio/putc.c create mode 100644 Userspace/apps/test/libc_test/stdio/putc_unlocked.c create mode 100644 Userspace/apps/test/libc_test/stdio/putchar.c create mode 100644 Userspace/apps/test/libc_test/stdio/putchar_unlocked.c create mode 100644 Userspace/apps/test/libc_test/stdio/puts.c create mode 100644 Userspace/apps/test/libc_test/stdio/remove.c create mode 100644 Userspace/apps/test/libc_test/stdio/rename.c create mode 100644 Userspace/apps/test/libc_test/stdio/renameat.c create mode 100644 Userspace/apps/test/libc_test/stdio/rewind.c create mode 100644 Userspace/apps/test/libc_test/stdio/scanf.c create mode 100644 Userspace/apps/test/libc_test/stdio/setbuf.c create mode 100644 Userspace/apps/test/libc_test/stdio/setvbuf.c create mode 100644 Userspace/apps/test/libc_test/stdio/snprintf.c create mode 100644 Userspace/apps/test/libc_test/stdio/sprintf.c create mode 100644 Userspace/apps/test/libc_test/stdio/sscanf.c create mode 100644 Userspace/apps/test/libc_test/stdio/tmpfile.c create mode 100644 Userspace/apps/test/libc_test/stdio/tmpnam.c create mode 100644 Userspace/apps/test/libc_test/stdio/ungetc.c create mode 100644 Userspace/apps/test/libc_test/stdio/vdprintf.c create mode 100644 Userspace/apps/test/libc_test/stdio/vfprintf.c create mode 100644 Userspace/apps/test/libc_test/stdio/vfscanf.c create mode 100644 Userspace/apps/test/libc_test/stdio/vprintf.c create mode 100644 Userspace/apps/test/libc_test/stdio/vscanf.c create mode 100644 Userspace/apps/test/libc_test/stdio/vsnprintf.c create mode 100644 Userspace/apps/test/libc_test/stdio/vsprintf.c create mode 100644 Userspace/apps/test/libc_test/stdio/vsscanf.c create mode 100644 Userspace/apps/test/libc_test/stdlib/a64l.c create mode 100644 Userspace/apps/test/libc_test/stdlib/abort.c create mode 100644 Userspace/apps/test/libc_test/stdlib/abs.c create mode 100644 Userspace/apps/test/libc_test/stdlib/atexit.c create mode 100644 Userspace/apps/test/libc_test/stdlib/atof.c create mode 100644 Userspace/apps/test/libc_test/stdlib/atoi.c create mode 100644 Userspace/apps/test/libc_test/stdlib/atol.c create mode 100644 Userspace/apps/test/libc_test/stdlib/bsearch.c create mode 100644 Userspace/apps/test/libc_test/stdlib/calloc.c create mode 100644 Userspace/apps/test/libc_test/stdlib/div.c create mode 100644 Userspace/apps/test/libc_test/stdlib/drand48.c create mode 100644 Userspace/apps/test/libc_test/stdlib/ecvt.c create mode 100644 Userspace/apps/test/libc_test/stdlib/erand48.c create mode 100644 Userspace/apps/test/libc_test/stdlib/exit.c create mode 100644 Userspace/apps/test/libc_test/stdlib/fcvt.c create mode 100644 Userspace/apps/test/libc_test/stdlib/free.c create mode 100644 Userspace/apps/test/libc_test/stdlib/gcvt.c create mode 100644 Userspace/apps/test/libc_test/stdlib/getenv.c create mode 100644 Userspace/apps/test/libc_test/stdlib/getsubopt.c create mode 100644 Userspace/apps/test/libc_test/stdlib/grantpt.c create mode 100644 Userspace/apps/test/libc_test/stdlib/initstate.c create mode 100644 Userspace/apps/test/libc_test/stdlib/jrand48.c create mode 100644 Userspace/apps/test/libc_test/stdlib/l64a.c create mode 100644 Userspace/apps/test/libc_test/stdlib/labs.c create mode 100644 Userspace/apps/test/libc_test/stdlib/lcong48.c create mode 100644 Userspace/apps/test/libc_test/stdlib/ldiv.c create mode 100644 Userspace/apps/test/libc_test/stdlib/lrand48.c create mode 100644 Userspace/apps/test/libc_test/stdlib/malloc.c create mode 100644 Userspace/apps/test/libc_test/stdlib/mblen.c create mode 100644 Userspace/apps/test/libc_test/stdlib/mbstowcs.c create mode 100644 Userspace/apps/test/libc_test/stdlib/mbtowc.c create mode 100644 Userspace/apps/test/libc_test/stdlib/mkstemp.c create mode 100644 Userspace/apps/test/libc_test/stdlib/mktemp.c create mode 100644 Userspace/apps/test/libc_test/stdlib/mrand48.c create mode 100644 Userspace/apps/test/libc_test/stdlib/nrand48.c create mode 100644 Userspace/apps/test/libc_test/stdlib/ptsname.c create mode 100644 Userspace/apps/test/libc_test/stdlib/putenv.c create mode 100644 Userspace/apps/test/libc_test/stdlib/qsort.c create mode 100644 Userspace/apps/test/libc_test/stdlib/rand.c create mode 100644 Userspace/apps/test/libc_test/stdlib/rand_r.c create mode 100644 Userspace/apps/test/libc_test/stdlib/random.c create mode 100644 Userspace/apps/test/libc_test/stdlib/realloc.c create mode 100644 Userspace/apps/test/libc_test/stdlib/realpath.c create mode 100644 Userspace/apps/test/libc_test/stdlib/seed48.c create mode 100644 Userspace/apps/test/libc_test/stdlib/setkey.c create mode 100644 Userspace/apps/test/libc_test/stdlib/setstate.c create mode 100644 Userspace/apps/test/libc_test/stdlib/srand.c create mode 100644 Userspace/apps/test/libc_test/stdlib/srand48.c create mode 100644 Userspace/apps/test/libc_test/stdlib/srandom.c create mode 100644 Userspace/apps/test/libc_test/stdlib/strtod.c create mode 100644 Userspace/apps/test/libc_test/stdlib/strtol.c create mode 100644 Userspace/apps/test/libc_test/stdlib/strtoul.c create mode 100644 Userspace/apps/test/libc_test/stdlib/system.c create mode 100644 Userspace/apps/test/libc_test/stdlib/ttyslot.c create mode 100644 Userspace/apps/test/libc_test/stdlib/unlockpt.c create mode 100644 Userspace/apps/test/libc_test/stdlib/valloc.c create mode 100644 Userspace/apps/test/libc_test/stdlib/wcstombs.c create mode 100644 Userspace/apps/test/libc_test/stdlib/wctomb.c create mode 100644 Userspace/apps/test/libc_test/string/memccpy.c create mode 100644 Userspace/apps/test/libc_test/string/memchr.c create mode 100644 Userspace/apps/test/libc_test/string/memcmp.c create mode 100644 Userspace/apps/test/libc_test/string/memcpy.c create mode 100644 Userspace/apps/test/libc_test/string/memmem.c create mode 100644 Userspace/apps/test/libc_test/string/memmove.c create mode 100644 Userspace/apps/test/libc_test/string/memset.c create mode 100644 Userspace/apps/test/libc_test/string/stpcpy.c create mode 100644 Userspace/apps/test/libc_test/string/stpncpy.c create mode 100644 Userspace/apps/test/libc_test/string/strcat.c create mode 100644 Userspace/apps/test/libc_test/string/strchr.c create mode 100644 Userspace/apps/test/libc_test/string/strcmp.c create mode 100644 Userspace/apps/test/libc_test/string/strcoll.c create mode 100644 Userspace/apps/test/libc_test/string/strcoll_l.c create mode 100644 Userspace/apps/test/libc_test/string/strcpy.c create mode 100644 Userspace/apps/test/libc_test/string/strcspn.c create mode 100644 Userspace/apps/test/libc_test/string/strdup.c create mode 100644 Userspace/apps/test/libc_test/string/strerror.c create mode 100644 Userspace/apps/test/libc_test/string/strerror_l.c create mode 100644 Userspace/apps/test/libc_test/string/strerror_r.c create mode 100644 Userspace/apps/test/libc_test/string/strlcat.c create mode 100644 Userspace/apps/test/libc_test/string/strlcpy.c create mode 100644 Userspace/apps/test/libc_test/string/strlen.c create mode 100644 Userspace/apps/test/libc_test/string/strncat.c create mode 100644 Userspace/apps/test/libc_test/string/strncmp.c create mode 100644 Userspace/apps/test/libc_test/string/strncpy.c create mode 100644 Userspace/apps/test/libc_test/string/strndup.c create mode 100644 Userspace/apps/test/libc_test/string/strnlen.c create mode 100644 Userspace/apps/test/libc_test/string/strpbrk.c create mode 100644 Userspace/apps/test/libc_test/string/strrchr.c create mode 100644 Userspace/apps/test/libc_test/string/strsignal.c create mode 100644 Userspace/apps/test/libc_test/string/strspn.c create mode 100644 Userspace/apps/test/libc_test/string/strstr.c create mode 100644 Userspace/apps/test/libc_test/string/strtok.c create mode 100644 Userspace/apps/test/libc_test/string/strtok_r.c create mode 100644 Userspace/apps/test/libc_test/string/strxfrm.c create mode 100644 Userspace/apps/test/libc_test/string/strxfrm_l.c create mode 100644 Userspace/apps/test/libc_test/sys/wait/wait.c create mode 100644 Userspace/apps/test/libc_test/sys/wait/waitid.c create mode 100644 Userspace/apps/test/libc_test/sys/wait/waitpid.c create mode 100644 Userspace/apps/test/libc_test/template.c create mode 100644 Userspace/apps/test/libc_test/time/asctime.c create mode 100644 Userspace/apps/test/libc_test/time/clock.c create mode 100644 Userspace/apps/test/libc_test/time/clock_getcpuclockid.c create mode 100644 Userspace/apps/test/libc_test/time/clock_getres.c create mode 100644 Userspace/apps/test/libc_test/time/clock_gettime.c create mode 100644 Userspace/apps/test/libc_test/time/clock_nanosleep.c create mode 100644 Userspace/apps/test/libc_test/time/clock_settime.c create mode 100644 Userspace/apps/test/libc_test/time/ctime.c create mode 100644 Userspace/apps/test/libc_test/time/difftime.c create mode 100644 Userspace/apps/test/libc_test/time/getdate.c create mode 100644 Userspace/apps/test/libc_test/time/gmtime.c create mode 100644 Userspace/apps/test/libc_test/time/gmtime_r.c create mode 100644 Userspace/apps/test/libc_test/time/localtime.c create mode 100644 Userspace/apps/test/libc_test/time/localtime_r.c create mode 100644 Userspace/apps/test/libc_test/time/mktime.c create mode 100644 Userspace/apps/test/libc_test/time/nanosleep.c create mode 100644 Userspace/apps/test/libc_test/time/strftime.c create mode 100644 Userspace/apps/test/libc_test/time/strftime_l.c create mode 100644 Userspace/apps/test/libc_test/time/strptime.c create mode 100644 Userspace/apps/test/libc_test/time/time.c create mode 100644 Userspace/apps/test/libc_test/time/timer_create.c create mode 100644 Userspace/apps/test/libc_test/time/timer_delete.c create mode 100644 Userspace/apps/test/libc_test/time/timer_getoverrun.c create mode 100644 Userspace/apps/test/libc_test/time/timer_gettime.c create mode 100644 Userspace/apps/test/libc_test/time/timer_settime.c create mode 100644 Userspace/apps/test/libc_test/time/timespec_get.c create mode 100644 Userspace/apps/test/libc_test/time/tzset.c create mode 100644 Userspace/apps/test/libc_test/unistd/_exit.c create mode 100644 Userspace/apps/test/libc_test/unistd/access.c create mode 100644 Userspace/apps/test/libc_test/unistd/alarm.c create mode 100644 Userspace/apps/test/libc_test/unistd/brk.c create mode 100644 Userspace/apps/test/libc_test/unistd/chdir.c create mode 100644 Userspace/apps/test/libc_test/unistd/chown.c create mode 100644 Userspace/apps/test/libc_test/unistd/chroot.c create mode 100644 Userspace/apps/test/libc_test/unistd/close.c create mode 100644 Userspace/apps/test/libc_test/unistd/confstr.c create mode 100644 Userspace/apps/test/libc_test/unistd/crypt.c create mode 100644 Userspace/apps/test/libc_test/unistd/ctermid.c create mode 100644 Userspace/apps/test/libc_test/unistd/cuserid.c create mode 100644 Userspace/apps/test/libc_test/unistd/dup.c create mode 100644 Userspace/apps/test/libc_test/unistd/dup2.c create mode 100644 Userspace/apps/test/libc_test/unistd/encrypt.c create mode 100644 Userspace/apps/test/libc_test/unistd/execl.c create mode 100644 Userspace/apps/test/libc_test/unistd/execle.c create mode 100644 Userspace/apps/test/libc_test/unistd/execlp.c create mode 100644 Userspace/apps/test/libc_test/unistd/execv.c create mode 100644 Userspace/apps/test/libc_test/unistd/execve.c create mode 100644 Userspace/apps/test/libc_test/unistd/execvp.c create mode 100644 Userspace/apps/test/libc_test/unistd/fchdir.c create mode 100644 Userspace/apps/test/libc_test/unistd/fchown.c create mode 100644 Userspace/apps/test/libc_test/unistd/fdatasync.c create mode 100644 Userspace/apps/test/libc_test/unistd/fork.c create mode 100644 Userspace/apps/test/libc_test/unistd/fpathconf.c create mode 100644 Userspace/apps/test/libc_test/unistd/fsync.c create mode 100644 Userspace/apps/test/libc_test/unistd/ftruncate.c create mode 100644 Userspace/apps/test/libc_test/unistd/getcwd.c create mode 100644 Userspace/apps/test/libc_test/unistd/getdtablesize.c create mode 100644 Userspace/apps/test/libc_test/unistd/getegid.c create mode 100644 Userspace/apps/test/libc_test/unistd/geteuid.c create mode 100644 Userspace/apps/test/libc_test/unistd/getgid.c create mode 100644 Userspace/apps/test/libc_test/unistd/getgroups.c create mode 100644 Userspace/apps/test/libc_test/unistd/gethostid.c create mode 100644 Userspace/apps/test/libc_test/unistd/getlogin.c create mode 100644 Userspace/apps/test/libc_test/unistd/getlogin_r.c create mode 100644 Userspace/apps/test/libc_test/unistd/getopt.c create mode 100644 Userspace/apps/test/libc_test/unistd/getpagesize.c create mode 100644 Userspace/apps/test/libc_test/unistd/getpass.c create mode 100644 Userspace/apps/test/libc_test/unistd/getpgid.c create mode 100644 Userspace/apps/test/libc_test/unistd/getpgrp.c create mode 100644 Userspace/apps/test/libc_test/unistd/getpid.c create mode 100644 Userspace/apps/test/libc_test/unistd/getppid.c create mode 100644 Userspace/apps/test/libc_test/unistd/getsid.c create mode 100644 Userspace/apps/test/libc_test/unistd/getuid.c create mode 100644 Userspace/apps/test/libc_test/unistd/getwd.c create mode 100644 Userspace/apps/test/libc_test/unistd/isatty.c create mode 100644 Userspace/apps/test/libc_test/unistd/lchown.c create mode 100644 Userspace/apps/test/libc_test/unistd/link.c create mode 100644 Userspace/apps/test/libc_test/unistd/lockf.c create mode 100644 Userspace/apps/test/libc_test/unistd/lseek.c create mode 100644 Userspace/apps/test/libc_test/unistd/nice.c create mode 100644 Userspace/apps/test/libc_test/unistd/pathconf.c create mode 100644 Userspace/apps/test/libc_test/unistd/pause.c create mode 100644 Userspace/apps/test/libc_test/unistd/pipe.c create mode 100644 Userspace/apps/test/libc_test/unistd/pread.c create mode 100644 Userspace/apps/test/libc_test/unistd/pthread_atfork.c create mode 100644 Userspace/apps/test/libc_test/unistd/pwrite.c create mode 100644 Userspace/apps/test/libc_test/unistd/read.c create mode 100644 Userspace/apps/test/libc_test/unistd/readlink.c create mode 100644 Userspace/apps/test/libc_test/unistd/rmdir.c create mode 100644 Userspace/apps/test/libc_test/unistd/sbrk.c create mode 100644 Userspace/apps/test/libc_test/unistd/setgid.c create mode 100644 Userspace/apps/test/libc_test/unistd/setpgid.c create mode 100644 Userspace/apps/test/libc_test/unistd/setpgrp.c create mode 100644 Userspace/apps/test/libc_test/unistd/setregid.c create mode 100644 Userspace/apps/test/libc_test/unistd/setreuid.c create mode 100644 Userspace/apps/test/libc_test/unistd/setsid.c create mode 100644 Userspace/apps/test/libc_test/unistd/setuid.c create mode 100644 Userspace/apps/test/libc_test/unistd/sleep.c create mode 100644 Userspace/apps/test/libc_test/unistd/swab.c create mode 100644 Userspace/apps/test/libc_test/unistd/symlink.c create mode 100644 Userspace/apps/test/libc_test/unistd/sync.c create mode 100644 Userspace/apps/test/libc_test/unistd/sysconf.c create mode 100644 Userspace/apps/test/libc_test/unistd/tcgetpgrp.c create mode 100644 Userspace/apps/test/libc_test/unistd/tcsetpgrp.c create mode 100644 Userspace/apps/test/libc_test/unistd/truncate.c create mode 100644 Userspace/apps/test/libc_test/unistd/ttyname.c create mode 100644 Userspace/apps/test/libc_test/unistd/ttyname_r.c create mode 100644 Userspace/apps/test/libc_test/unistd/ualarm.c create mode 100644 Userspace/apps/test/libc_test/unistd/unlink.c create mode 100644 Userspace/apps/test/libc_test/unistd/usleep.c create mode 100644 Userspace/apps/test/libc_test/unistd/vfork.c create mode 100644 Userspace/apps/test/libc_test/unistd/write.c diff --git a/Userspace/apps/test/libc_test/Makefile b/Userspace/apps/test/libc_test/Makefile new file mode 100644 index 00000000..13dee6ab --- /dev/null +++ b/Userspace/apps/test/libc_test/Makefile @@ -0,0 +1,36 @@ +default: + $(error Do not run this Makefile directly!) + +S_SOURCES = $(shell find ./ -type f -name '*.S') +C_SOURCES = $(shell find ./ -type f -name '*.c') +CXX_SOURCES = $(shell find ./ -type f -name '*.cpp') + +OBJ = $(S_SOURCES:.S=.o) $(C_SOURCES:.c=.o) $(CXX_SOURCES:.cpp=.o) + +FILENAME = $(notdir $(shell pwd)) +WARNCFLAG = -Wall -Wextra + +build: $(FILENAME).elf + cp $(FILENAME).elf $(WORKSPACE_DIR)/out/bin/$(FILENAME) + +# Use static linking +LDFLAGS += -static -fno-pic -fno-pie -Wl,-static + +$(FILENAME).elf: $(OBJ) + $(info Linking $@) + $(CC) $(LDFLAGS) $(SYSROOT) $(OBJ) -o $@ + +%.o: %.c $(HEADERS) + $(info Compiling $<) + $(CC) $(CFLAGS) $(WARNCFLAG) -std=c17 -c $< -o $@ + +%.o: %.cpp $(HEADERS) + $(info Compiling $<) + $(CXX) $(CFLAGS) $(WARNCFLAG) -std=c++20 -fexceptions -c $< -o $@ -fno-rtti + +%.o: %.S + $(info Compiling $<) + $(AS) -o $@ $< + +clean: + rm -f $(OBJ) $(FILENAME).elf diff --git a/Userspace/apps/test/libc_test/assert/assert.c b/Userspace/apps/test/libc_test/assert/assert.c new file mode 100644 index 00000000..b45aee69 --- /dev/null +++ b/Userspace/apps/test/libc_test/assert/assert.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/dirent/alphasort.c b/Userspace/apps/test/libc_test/dirent/alphasort.c new file mode 100644 index 00000000..dc794ee6 --- /dev/null +++ b/Userspace/apps/test/libc_test/dirent/alphasort.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/dirent/closedir.c b/Userspace/apps/test/libc_test/dirent/closedir.c new file mode 100644 index 00000000..dc794ee6 --- /dev/null +++ b/Userspace/apps/test/libc_test/dirent/closedir.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/dirent/dirfd.c b/Userspace/apps/test/libc_test/dirent/dirfd.c new file mode 100644 index 00000000..dc794ee6 --- /dev/null +++ b/Userspace/apps/test/libc_test/dirent/dirfd.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/dirent/fdopendir.c b/Userspace/apps/test/libc_test/dirent/fdopendir.c new file mode 100644 index 00000000..dc794ee6 --- /dev/null +++ b/Userspace/apps/test/libc_test/dirent/fdopendir.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/dirent/opendir.c b/Userspace/apps/test/libc_test/dirent/opendir.c new file mode 100644 index 00000000..dc794ee6 --- /dev/null +++ b/Userspace/apps/test/libc_test/dirent/opendir.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/dirent/posix_getdents.c b/Userspace/apps/test/libc_test/dirent/posix_getdents.c new file mode 100644 index 00000000..dc794ee6 --- /dev/null +++ b/Userspace/apps/test/libc_test/dirent/posix_getdents.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/dirent/readdir.c b/Userspace/apps/test/libc_test/dirent/readdir.c new file mode 100644 index 00000000..dc794ee6 --- /dev/null +++ b/Userspace/apps/test/libc_test/dirent/readdir.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/dirent/readdir_r.c b/Userspace/apps/test/libc_test/dirent/readdir_r.c new file mode 100644 index 00000000..dc794ee6 --- /dev/null +++ b/Userspace/apps/test/libc_test/dirent/readdir_r.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/dirent/rewinddir.c b/Userspace/apps/test/libc_test/dirent/rewinddir.c new file mode 100644 index 00000000..dc794ee6 --- /dev/null +++ b/Userspace/apps/test/libc_test/dirent/rewinddir.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/dirent/scandir.c b/Userspace/apps/test/libc_test/dirent/scandir.c new file mode 100644 index 00000000..dc794ee6 --- /dev/null +++ b/Userspace/apps/test/libc_test/dirent/scandir.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/dirent/seekdir.c b/Userspace/apps/test/libc_test/dirent/seekdir.c new file mode 100644 index 00000000..dc794ee6 --- /dev/null +++ b/Userspace/apps/test/libc_test/dirent/seekdir.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/dirent/telldir.c b/Userspace/apps/test/libc_test/dirent/telldir.c new file mode 100644 index 00000000..dc794ee6 --- /dev/null +++ b/Userspace/apps/test/libc_test/dirent/telldir.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/errno/__errno_location.c b/Userspace/apps/test/libc_test/errno/__errno_location.c new file mode 100644 index 00000000..46aa93b8 --- /dev/null +++ b/Userspace/apps/test/libc_test/errno/__errno_location.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/errno/strerror.c b/Userspace/apps/test/libc_test/errno/strerror.c new file mode 100644 index 00000000..46aa93b8 --- /dev/null +++ b/Userspace/apps/test/libc_test/errno/strerror.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/fcntl/creat.c b/Userspace/apps/test/libc_test/fcntl/creat.c new file mode 100644 index 00000000..fdaa111c --- /dev/null +++ b/Userspace/apps/test/libc_test/fcntl/creat.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/fcntl/fcntl.c b/Userspace/apps/test/libc_test/fcntl/fcntl.c new file mode 100644 index 00000000..fdaa111c --- /dev/null +++ b/Userspace/apps/test/libc_test/fcntl/fcntl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/fcntl/open.c b/Userspace/apps/test/libc_test/fcntl/open.c new file mode 100644 index 00000000..fdaa111c --- /dev/null +++ b/Userspace/apps/test/libc_test/fcntl/open.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/fcntl/openat.c b/Userspace/apps/test/libc_test/fcntl/openat.c new file mode 100644 index 00000000..fdaa111c --- /dev/null +++ b/Userspace/apps/test/libc_test/fcntl/openat.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/fcntl/posix_fadvise.c b/Userspace/apps/test/libc_test/fcntl/posix_fadvise.c new file mode 100644 index 00000000..fdaa111c --- /dev/null +++ b/Userspace/apps/test/libc_test/fcntl/posix_fadvise.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/fcntl/posix_fallocate.c b/Userspace/apps/test/libc_test/fcntl/posix_fallocate.c new file mode 100644 index 00000000..fdaa111c --- /dev/null +++ b/Userspace/apps/test/libc_test/fcntl/posix_fallocate.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/locale/duplocale.c b/Userspace/apps/test/libc_test/locale/duplocale.c new file mode 100644 index 00000000..c04d36c2 --- /dev/null +++ b/Userspace/apps/test/libc_test/locale/duplocale.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/locale/freelocale.c b/Userspace/apps/test/libc_test/locale/freelocale.c new file mode 100644 index 00000000..c04d36c2 --- /dev/null +++ b/Userspace/apps/test/libc_test/locale/freelocale.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/locale/getlocalename_l.c b/Userspace/apps/test/libc_test/locale/getlocalename_l.c new file mode 100644 index 00000000..c04d36c2 --- /dev/null +++ b/Userspace/apps/test/libc_test/locale/getlocalename_l.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/locale/localeconv.c b/Userspace/apps/test/libc_test/locale/localeconv.c new file mode 100644 index 00000000..c04d36c2 --- /dev/null +++ b/Userspace/apps/test/libc_test/locale/localeconv.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/locale/newlocale.c b/Userspace/apps/test/libc_test/locale/newlocale.c new file mode 100644 index 00000000..c04d36c2 --- /dev/null +++ b/Userspace/apps/test/libc_test/locale/newlocale.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/locale/setlocale.c b/Userspace/apps/test/libc_test/locale/setlocale.c new file mode 100644 index 00000000..c04d36c2 --- /dev/null +++ b/Userspace/apps/test/libc_test/locale/setlocale.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/locale/uselocale.c b/Userspace/apps/test/libc_test/locale/uselocale.c new file mode 100644 index 00000000..c04d36c2 --- /dev/null +++ b/Userspace/apps/test/libc_test/locale/uselocale.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/main.c b/Userspace/apps/test/libc_test/main.c new file mode 100644 index 00000000..a02ea96c --- /dev/null +++ b/Userspace/apps/test/libc_test/main.c @@ -0,0 +1,20 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +int main(int argc, char *argv[]) +{ +} diff --git a/Userspace/apps/test/libc_test/math/acos.c b/Userspace/apps/test/libc_test/math/acos.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/acos.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/acosf.c b/Userspace/apps/test/libc_test/math/acosf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/acosf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/acosh.c b/Userspace/apps/test/libc_test/math/acosh.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/acosh.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/acoshf.c b/Userspace/apps/test/libc_test/math/acoshf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/acoshf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/acoshl.c b/Userspace/apps/test/libc_test/math/acoshl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/acoshl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/acosl.c b/Userspace/apps/test/libc_test/math/acosl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/acosl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/asin.c b/Userspace/apps/test/libc_test/math/asin.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/asin.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/asinf.c b/Userspace/apps/test/libc_test/math/asinf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/asinf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/asinh.c b/Userspace/apps/test/libc_test/math/asinh.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/asinh.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/asinhf.c b/Userspace/apps/test/libc_test/math/asinhf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/asinhf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/asinhl.c b/Userspace/apps/test/libc_test/math/asinhl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/asinhl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/asinl.c b/Userspace/apps/test/libc_test/math/asinl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/asinl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/atan.c b/Userspace/apps/test/libc_test/math/atan.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/atan.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/atan2.c b/Userspace/apps/test/libc_test/math/atan2.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/atan2.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/atan2f.c b/Userspace/apps/test/libc_test/math/atan2f.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/atan2f.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/atan2l.c b/Userspace/apps/test/libc_test/math/atan2l.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/atan2l.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/atanf.c b/Userspace/apps/test/libc_test/math/atanf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/atanf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/atanh.c b/Userspace/apps/test/libc_test/math/atanh.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/atanh.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/atanhf.c b/Userspace/apps/test/libc_test/math/atanhf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/atanhf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/atanhl.c b/Userspace/apps/test/libc_test/math/atanhl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/atanhl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/atanl.c b/Userspace/apps/test/libc_test/math/atanl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/atanl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/cbrt.c b/Userspace/apps/test/libc_test/math/cbrt.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/cbrt.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/cbrtf.c b/Userspace/apps/test/libc_test/math/cbrtf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/cbrtf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/cbrtl.c b/Userspace/apps/test/libc_test/math/cbrtl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/cbrtl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/ceil.c b/Userspace/apps/test/libc_test/math/ceil.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/ceil.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/ceilf.c b/Userspace/apps/test/libc_test/math/ceilf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/ceilf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/ceill.c b/Userspace/apps/test/libc_test/math/ceill.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/ceill.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/copysign.c b/Userspace/apps/test/libc_test/math/copysign.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/copysign.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/copysignf.c b/Userspace/apps/test/libc_test/math/copysignf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/copysignf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/copysignl.c b/Userspace/apps/test/libc_test/math/copysignl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/copysignl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/cos.c b/Userspace/apps/test/libc_test/math/cos.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/cos.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/cosf.c b/Userspace/apps/test/libc_test/math/cosf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/cosf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/cosh.c b/Userspace/apps/test/libc_test/math/cosh.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/cosh.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/coshf.c b/Userspace/apps/test/libc_test/math/coshf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/coshf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/coshl.c b/Userspace/apps/test/libc_test/math/coshl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/coshl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/cosl.c b/Userspace/apps/test/libc_test/math/cosl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/cosl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/erf.c b/Userspace/apps/test/libc_test/math/erf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/erf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/erfc.c b/Userspace/apps/test/libc_test/math/erfc.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/erfc.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/erfcf.c b/Userspace/apps/test/libc_test/math/erfcf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/erfcf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/erfcl.c b/Userspace/apps/test/libc_test/math/erfcl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/erfcl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/erff.c b/Userspace/apps/test/libc_test/math/erff.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/erff.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/erfl.c b/Userspace/apps/test/libc_test/math/erfl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/erfl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/exp.c b/Userspace/apps/test/libc_test/math/exp.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/exp.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/exp2.c b/Userspace/apps/test/libc_test/math/exp2.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/exp2.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/exp2f.c b/Userspace/apps/test/libc_test/math/exp2f.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/exp2f.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/exp2l.c b/Userspace/apps/test/libc_test/math/exp2l.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/exp2l.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/expf.c b/Userspace/apps/test/libc_test/math/expf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/expf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/expl.c b/Userspace/apps/test/libc_test/math/expl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/expl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/expm1.c b/Userspace/apps/test/libc_test/math/expm1.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/expm1.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/expm1f.c b/Userspace/apps/test/libc_test/math/expm1f.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/expm1f.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/expm1l.c b/Userspace/apps/test/libc_test/math/expm1l.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/expm1l.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/fabs.c b/Userspace/apps/test/libc_test/math/fabs.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/fabs.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/fabsf.c b/Userspace/apps/test/libc_test/math/fabsf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/fabsf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/fabsl.c b/Userspace/apps/test/libc_test/math/fabsl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/fabsl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/fdim.c b/Userspace/apps/test/libc_test/math/fdim.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/fdim.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/fdimf.c b/Userspace/apps/test/libc_test/math/fdimf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/fdimf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/fdiml.c b/Userspace/apps/test/libc_test/math/fdiml.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/fdiml.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/floor.c b/Userspace/apps/test/libc_test/math/floor.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/floor.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/floorf.c b/Userspace/apps/test/libc_test/math/floorf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/floorf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/floorl.c b/Userspace/apps/test/libc_test/math/floorl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/floorl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/fma.c b/Userspace/apps/test/libc_test/math/fma.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/fma.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/fmaf.c b/Userspace/apps/test/libc_test/math/fmaf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/fmaf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/fmal.c b/Userspace/apps/test/libc_test/math/fmal.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/fmal.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/fmax.c b/Userspace/apps/test/libc_test/math/fmax.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/fmax.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/fmaxf.c b/Userspace/apps/test/libc_test/math/fmaxf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/fmaxf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/fmaxl.c b/Userspace/apps/test/libc_test/math/fmaxl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/fmaxl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/fmin.c b/Userspace/apps/test/libc_test/math/fmin.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/fmin.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/fminf.c b/Userspace/apps/test/libc_test/math/fminf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/fminf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/fminl.c b/Userspace/apps/test/libc_test/math/fminl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/fminl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/fmod.c b/Userspace/apps/test/libc_test/math/fmod.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/fmod.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/fmodf.c b/Userspace/apps/test/libc_test/math/fmodf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/fmodf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/fmodl.c b/Userspace/apps/test/libc_test/math/fmodl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/fmodl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/frexp.c b/Userspace/apps/test/libc_test/math/frexp.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/frexp.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/frexpf.c b/Userspace/apps/test/libc_test/math/frexpf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/frexpf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/frexpl.c b/Userspace/apps/test/libc_test/math/frexpl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/frexpl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/hypot.c b/Userspace/apps/test/libc_test/math/hypot.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/hypot.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/hypotf.c b/Userspace/apps/test/libc_test/math/hypotf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/hypotf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/hypotl.c b/Userspace/apps/test/libc_test/math/hypotl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/hypotl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/ilogb.c b/Userspace/apps/test/libc_test/math/ilogb.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/ilogb.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/ilogbf.c b/Userspace/apps/test/libc_test/math/ilogbf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/ilogbf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/ilogbl.c b/Userspace/apps/test/libc_test/math/ilogbl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/ilogbl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/j0.c b/Userspace/apps/test/libc_test/math/j0.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/j0.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/j1.c b/Userspace/apps/test/libc_test/math/j1.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/j1.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/jn.c b/Userspace/apps/test/libc_test/math/jn.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/jn.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/ldexp.c b/Userspace/apps/test/libc_test/math/ldexp.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/ldexp.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/ldexpf.c b/Userspace/apps/test/libc_test/math/ldexpf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/ldexpf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/ldexpl.c b/Userspace/apps/test/libc_test/math/ldexpl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/ldexpl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/lgamma.c b/Userspace/apps/test/libc_test/math/lgamma.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/lgamma.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/lgammaf.c b/Userspace/apps/test/libc_test/math/lgammaf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/lgammaf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/lgammal.c b/Userspace/apps/test/libc_test/math/lgammal.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/lgammal.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/llrint.c b/Userspace/apps/test/libc_test/math/llrint.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/llrint.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/llrintf.c b/Userspace/apps/test/libc_test/math/llrintf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/llrintf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/llrintl.c b/Userspace/apps/test/libc_test/math/llrintl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/llrintl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/llround.c b/Userspace/apps/test/libc_test/math/llround.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/llround.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/llroundf.c b/Userspace/apps/test/libc_test/math/llroundf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/llroundf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/llroundl.c b/Userspace/apps/test/libc_test/math/llroundl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/llroundl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/log.c b/Userspace/apps/test/libc_test/math/log.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/log.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/log10.c b/Userspace/apps/test/libc_test/math/log10.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/log10.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/log10f.c b/Userspace/apps/test/libc_test/math/log10f.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/log10f.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/log10l.c b/Userspace/apps/test/libc_test/math/log10l.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/log10l.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/log1p.c b/Userspace/apps/test/libc_test/math/log1p.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/log1p.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/log1pf.c b/Userspace/apps/test/libc_test/math/log1pf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/log1pf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/log1pl.c b/Userspace/apps/test/libc_test/math/log1pl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/log1pl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/log2.c b/Userspace/apps/test/libc_test/math/log2.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/log2.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/log2f.c b/Userspace/apps/test/libc_test/math/log2f.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/log2f.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/log2l.c b/Userspace/apps/test/libc_test/math/log2l.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/log2l.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/logb.c b/Userspace/apps/test/libc_test/math/logb.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/logb.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/logbf.c b/Userspace/apps/test/libc_test/math/logbf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/logbf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/logbl.c b/Userspace/apps/test/libc_test/math/logbl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/logbl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/logf.c b/Userspace/apps/test/libc_test/math/logf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/logf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/logl.c b/Userspace/apps/test/libc_test/math/logl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/logl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/lrint.c b/Userspace/apps/test/libc_test/math/lrint.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/lrint.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/lrintf.c b/Userspace/apps/test/libc_test/math/lrintf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/lrintf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/lrintl.c b/Userspace/apps/test/libc_test/math/lrintl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/lrintl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/lround.c b/Userspace/apps/test/libc_test/math/lround.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/lround.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/lroundf.c b/Userspace/apps/test/libc_test/math/lroundf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/lroundf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/lroundl.c b/Userspace/apps/test/libc_test/math/lroundl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/lroundl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/modf.c b/Userspace/apps/test/libc_test/math/modf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/modf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/modff.c b/Userspace/apps/test/libc_test/math/modff.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/modff.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/modfl.c b/Userspace/apps/test/libc_test/math/modfl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/modfl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/nan.c b/Userspace/apps/test/libc_test/math/nan.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/nan.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/nanf.c b/Userspace/apps/test/libc_test/math/nanf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/nanf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/nanl.c b/Userspace/apps/test/libc_test/math/nanl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/nanl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/nearbyint.c b/Userspace/apps/test/libc_test/math/nearbyint.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/nearbyint.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/nearbyintf.c b/Userspace/apps/test/libc_test/math/nearbyintf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/nearbyintf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/nearbyintl.c b/Userspace/apps/test/libc_test/math/nearbyintl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/nearbyintl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/nextafter.c b/Userspace/apps/test/libc_test/math/nextafter.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/nextafter.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/nextafterf.c b/Userspace/apps/test/libc_test/math/nextafterf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/nextafterf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/nextafterl.c b/Userspace/apps/test/libc_test/math/nextafterl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/nextafterl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/nexttoward.c b/Userspace/apps/test/libc_test/math/nexttoward.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/nexttoward.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/nexttowardf.c b/Userspace/apps/test/libc_test/math/nexttowardf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/nexttowardf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/nexttowardl.c b/Userspace/apps/test/libc_test/math/nexttowardl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/nexttowardl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/pow.c b/Userspace/apps/test/libc_test/math/pow.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/pow.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/powf.c b/Userspace/apps/test/libc_test/math/powf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/powf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/powl.c b/Userspace/apps/test/libc_test/math/powl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/powl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/remainder.c b/Userspace/apps/test/libc_test/math/remainder.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/remainder.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/remainderf.c b/Userspace/apps/test/libc_test/math/remainderf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/remainderf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/remainderl.c b/Userspace/apps/test/libc_test/math/remainderl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/remainderl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/remquo.c b/Userspace/apps/test/libc_test/math/remquo.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/remquo.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/remquof.c b/Userspace/apps/test/libc_test/math/remquof.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/remquof.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/remquol.c b/Userspace/apps/test/libc_test/math/remquol.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/remquol.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/rint.c b/Userspace/apps/test/libc_test/math/rint.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/rint.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/rintf.c b/Userspace/apps/test/libc_test/math/rintf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/rintf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/rintl.c b/Userspace/apps/test/libc_test/math/rintl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/rintl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/round.c b/Userspace/apps/test/libc_test/math/round.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/round.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/roundf.c b/Userspace/apps/test/libc_test/math/roundf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/roundf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/roundl.c b/Userspace/apps/test/libc_test/math/roundl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/roundl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/scalb.c b/Userspace/apps/test/libc_test/math/scalb.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/scalb.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/scalbln.c b/Userspace/apps/test/libc_test/math/scalbln.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/scalbln.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/scalblnf.c b/Userspace/apps/test/libc_test/math/scalblnf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/scalblnf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/scalblnl.c b/Userspace/apps/test/libc_test/math/scalblnl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/scalblnl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/scalbn.c b/Userspace/apps/test/libc_test/math/scalbn.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/scalbn.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/scalbnf.c b/Userspace/apps/test/libc_test/math/scalbnf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/scalbnf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/scalbnl.c b/Userspace/apps/test/libc_test/math/scalbnl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/scalbnl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/sin.c b/Userspace/apps/test/libc_test/math/sin.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/sin.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/sinf.c b/Userspace/apps/test/libc_test/math/sinf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/sinf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/sinh.c b/Userspace/apps/test/libc_test/math/sinh.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/sinh.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/sinhf.c b/Userspace/apps/test/libc_test/math/sinhf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/sinhf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/sinhl.c b/Userspace/apps/test/libc_test/math/sinhl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/sinhl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/sinl.c b/Userspace/apps/test/libc_test/math/sinl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/sinl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/sqrt.c b/Userspace/apps/test/libc_test/math/sqrt.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/sqrt.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/sqrtf.c b/Userspace/apps/test/libc_test/math/sqrtf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/sqrtf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/sqrtl.c b/Userspace/apps/test/libc_test/math/sqrtl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/sqrtl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/tan.c b/Userspace/apps/test/libc_test/math/tan.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/tan.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/tanf.c b/Userspace/apps/test/libc_test/math/tanf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/tanf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/tanh.c b/Userspace/apps/test/libc_test/math/tanh.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/tanh.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/tanhf.c b/Userspace/apps/test/libc_test/math/tanhf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/tanhf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/tanhl.c b/Userspace/apps/test/libc_test/math/tanhl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/tanhl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/tanl.c b/Userspace/apps/test/libc_test/math/tanl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/tanl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/tgamma.c b/Userspace/apps/test/libc_test/math/tgamma.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/tgamma.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/tgammaf.c b/Userspace/apps/test/libc_test/math/tgammaf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/tgammaf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/tgammal.c b/Userspace/apps/test/libc_test/math/tgammal.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/tgammal.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/trunc.c b/Userspace/apps/test/libc_test/math/trunc.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/trunc.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/truncf.c b/Userspace/apps/test/libc_test/math/truncf.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/truncf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/truncl.c b/Userspace/apps/test/libc_test/math/truncl.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/truncl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/y0.c b/Userspace/apps/test/libc_test/math/y0.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/y0.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/y1.c b/Userspace/apps/test/libc_test/math/y1.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/y1.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/math/yn.c b/Userspace/apps/test/libc_test/math/yn.c new file mode 100644 index 00000000..11cc7a3b --- /dev/null +++ b/Userspace/apps/test/libc_test/math/yn.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_attr_destroy.c b/Userspace/apps/test/libc_test/pthread/pthread_attr_destroy.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_attr_destroy.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_attr_getdetachstate.c b/Userspace/apps/test/libc_test/pthread/pthread_attr_getdetachstate.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_attr_getdetachstate.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_attr_getguardsize.c b/Userspace/apps/test/libc_test/pthread/pthread_attr_getguardsize.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_attr_getguardsize.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_attr_getinheritsched.c b/Userspace/apps/test/libc_test/pthread/pthread_attr_getinheritsched.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_attr_getinheritsched.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_attr_getschedparam.c b/Userspace/apps/test/libc_test/pthread/pthread_attr_getschedparam.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_attr_getschedparam.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_attr_getschedpolicy.c b/Userspace/apps/test/libc_test/pthread/pthread_attr_getschedpolicy.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_attr_getschedpolicy.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_attr_getscope.c b/Userspace/apps/test/libc_test/pthread/pthread_attr_getscope.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_attr_getscope.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_attr_getstackaddr.c b/Userspace/apps/test/libc_test/pthread/pthread_attr_getstackaddr.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_attr_getstackaddr.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_attr_getstacksize.c b/Userspace/apps/test/libc_test/pthread/pthread_attr_getstacksize.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_attr_getstacksize.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_attr_init.c b/Userspace/apps/test/libc_test/pthread/pthread_attr_init.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_attr_init.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_attr_setdetachstate.c b/Userspace/apps/test/libc_test/pthread/pthread_attr_setdetachstate.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_attr_setdetachstate.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_attr_setguardsize.c b/Userspace/apps/test/libc_test/pthread/pthread_attr_setguardsize.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_attr_setguardsize.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_attr_setinheritsched.c b/Userspace/apps/test/libc_test/pthread/pthread_attr_setinheritsched.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_attr_setinheritsched.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_attr_setschedparam.c b/Userspace/apps/test/libc_test/pthread/pthread_attr_setschedparam.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_attr_setschedparam.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_attr_setschedpolicy.c b/Userspace/apps/test/libc_test/pthread/pthread_attr_setschedpolicy.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_attr_setschedpolicy.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_attr_setscope.c b/Userspace/apps/test/libc_test/pthread/pthread_attr_setscope.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_attr_setscope.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_attr_setstackaddr.c b/Userspace/apps/test/libc_test/pthread/pthread_attr_setstackaddr.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_attr_setstackaddr.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_attr_setstacksize.c b/Userspace/apps/test/libc_test/pthread/pthread_attr_setstacksize.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_attr_setstacksize.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_cancel.c b/Userspace/apps/test/libc_test/pthread/pthread_cancel.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_cancel.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_cleanup_pop.c b/Userspace/apps/test/libc_test/pthread/pthread_cleanup_pop.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_cleanup_pop.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_cleanup_push.c b/Userspace/apps/test/libc_test/pthread/pthread_cleanup_push.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_cleanup_push.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_cond_broadcast.c b/Userspace/apps/test/libc_test/pthread/pthread_cond_broadcast.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_cond_broadcast.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_cond_destroy.c b/Userspace/apps/test/libc_test/pthread/pthread_cond_destroy.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_cond_destroy.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_cond_init.c b/Userspace/apps/test/libc_test/pthread/pthread_cond_init.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_cond_init.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_cond_signal.c b/Userspace/apps/test/libc_test/pthread/pthread_cond_signal.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_cond_signal.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_cond_timedwait.c b/Userspace/apps/test/libc_test/pthread/pthread_cond_timedwait.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_cond_timedwait.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_cond_wait.c b/Userspace/apps/test/libc_test/pthread/pthread_cond_wait.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_cond_wait.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_condattr_destroy.c b/Userspace/apps/test/libc_test/pthread/pthread_condattr_destroy.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_condattr_destroy.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_condattr_getpshared.c b/Userspace/apps/test/libc_test/pthread/pthread_condattr_getpshared.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_condattr_getpshared.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_condattr_init.c b/Userspace/apps/test/libc_test/pthread/pthread_condattr_init.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_condattr_init.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_condattr_setpshared.c b/Userspace/apps/test/libc_test/pthread/pthread_condattr_setpshared.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_condattr_setpshared.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_create.c b/Userspace/apps/test/libc_test/pthread/pthread_create.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_create.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_detach.c b/Userspace/apps/test/libc_test/pthread/pthread_detach.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_detach.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_equal.c b/Userspace/apps/test/libc_test/pthread/pthread_equal.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_equal.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_exit.c b/Userspace/apps/test/libc_test/pthread/pthread_exit.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_exit.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_getconcurrency.c b/Userspace/apps/test/libc_test/pthread/pthread_getconcurrency.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_getconcurrency.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_getschedparam.c b/Userspace/apps/test/libc_test/pthread/pthread_getschedparam.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_getschedparam.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_getspecific.c b/Userspace/apps/test/libc_test/pthread/pthread_getspecific.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_getspecific.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_join.c b/Userspace/apps/test/libc_test/pthread/pthread_join.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_join.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_key_create.c b/Userspace/apps/test/libc_test/pthread/pthread_key_create.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_key_create.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_key_delete.c b/Userspace/apps/test/libc_test/pthread/pthread_key_delete.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_key_delete.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_mutex_destroy.c b/Userspace/apps/test/libc_test/pthread/pthread_mutex_destroy.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_mutex_destroy.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_mutex_getprioceiling.c b/Userspace/apps/test/libc_test/pthread/pthread_mutex_getprioceiling.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_mutex_getprioceiling.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_mutex_init.c b/Userspace/apps/test/libc_test/pthread/pthread_mutex_init.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_mutex_init.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_mutex_lock.c b/Userspace/apps/test/libc_test/pthread/pthread_mutex_lock.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_mutex_lock.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_mutex_setprioceiling.c b/Userspace/apps/test/libc_test/pthread/pthread_mutex_setprioceiling.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_mutex_setprioceiling.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_mutex_trylock.c b/Userspace/apps/test/libc_test/pthread/pthread_mutex_trylock.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_mutex_trylock.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_mutex_unlock.c b/Userspace/apps/test/libc_test/pthread/pthread_mutex_unlock.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_mutex_unlock.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_destroy.c b/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_destroy.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_destroy.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#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 new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_getprioceiling.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_getprotocol.c b/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_getprotocol.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_getprotocol.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_getpshared.c b/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_getpshared.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_getpshared.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_gettype.c b/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_gettype.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_gettype.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_init.c b/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_init.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_init.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_setprioceiling.c b/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_setprioceiling.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_setprioceiling.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_setprotocol.c b/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_setprotocol.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_setprotocol.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_setpshared.c b/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_setpshared.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_setpshared.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_settype.c b/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_settype.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_mutexattr_settype.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_once.c b/Userspace/apps/test/libc_test/pthread/pthread_once.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_once.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_rwlock_destroy.c b/Userspace/apps/test/libc_test/pthread/pthread_rwlock_destroy.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_rwlock_destroy.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_rwlock_init.c b/Userspace/apps/test/libc_test/pthread/pthread_rwlock_init.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_rwlock_init.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_rwlock_rdlock.c b/Userspace/apps/test/libc_test/pthread/pthread_rwlock_rdlock.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_rwlock_rdlock.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_rwlock_tryrdlock.c b/Userspace/apps/test/libc_test/pthread/pthread_rwlock_tryrdlock.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_rwlock_tryrdlock.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_rwlock_trywrlock.c b/Userspace/apps/test/libc_test/pthread/pthread_rwlock_trywrlock.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_rwlock_trywrlock.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_rwlock_unlock.c b/Userspace/apps/test/libc_test/pthread/pthread_rwlock_unlock.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_rwlock_unlock.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_rwlock_wrlock.c b/Userspace/apps/test/libc_test/pthread/pthread_rwlock_wrlock.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_rwlock_wrlock.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_rwlockattr_destroy.c b/Userspace/apps/test/libc_test/pthread/pthread_rwlockattr_destroy.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_rwlockattr_destroy.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_rwlockattr_getpshared.c b/Userspace/apps/test/libc_test/pthread/pthread_rwlockattr_getpshared.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_rwlockattr_getpshared.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_rwlockattr_init.c b/Userspace/apps/test/libc_test/pthread/pthread_rwlockattr_init.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_rwlockattr_init.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_rwlockattr_setpshared.c b/Userspace/apps/test/libc_test/pthread/pthread_rwlockattr_setpshared.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_rwlockattr_setpshared.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_self.c b/Userspace/apps/test/libc_test/pthread/pthread_self.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_self.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_setcancelstate.c b/Userspace/apps/test/libc_test/pthread/pthread_setcancelstate.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_setcancelstate.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_setcanceltype.c b/Userspace/apps/test/libc_test/pthread/pthread_setcanceltype.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_setcanceltype.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_setconcurrency.c b/Userspace/apps/test/libc_test/pthread/pthread_setconcurrency.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_setconcurrency.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_setschedparam.c b/Userspace/apps/test/libc_test/pthread/pthread_setschedparam.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_setschedparam.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_setspecific.c b/Userspace/apps/test/libc_test/pthread/pthread_setspecific.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_setspecific.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pthread/pthread_testcancel.c b/Userspace/apps/test/libc_test/pthread/pthread_testcancel.c new file mode 100644 index 00000000..abf1cbc1 --- /dev/null +++ b/Userspace/apps/test/libc_test/pthread/pthread_testcancel.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pwd/endpwent.c b/Userspace/apps/test/libc_test/pwd/endpwent.c new file mode 100644 index 00000000..1f8293c4 --- /dev/null +++ b/Userspace/apps/test/libc_test/pwd/endpwent.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pwd/getpwent.c b/Userspace/apps/test/libc_test/pwd/getpwent.c new file mode 100644 index 00000000..1f8293c4 --- /dev/null +++ b/Userspace/apps/test/libc_test/pwd/getpwent.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pwd/getpwnam.c b/Userspace/apps/test/libc_test/pwd/getpwnam.c new file mode 100644 index 00000000..1f8293c4 --- /dev/null +++ b/Userspace/apps/test/libc_test/pwd/getpwnam.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pwd/getpwnam_r.c b/Userspace/apps/test/libc_test/pwd/getpwnam_r.c new file mode 100644 index 00000000..1f8293c4 --- /dev/null +++ b/Userspace/apps/test/libc_test/pwd/getpwnam_r.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pwd/getpwuid.c b/Userspace/apps/test/libc_test/pwd/getpwuid.c new file mode 100644 index 00000000..1f8293c4 --- /dev/null +++ b/Userspace/apps/test/libc_test/pwd/getpwuid.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pwd/getpwuid_r.c b/Userspace/apps/test/libc_test/pwd/getpwuid_r.c new file mode 100644 index 00000000..1f8293c4 --- /dev/null +++ b/Userspace/apps/test/libc_test/pwd/getpwuid_r.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/pwd/setpwent.c b/Userspace/apps/test/libc_test/pwd/setpwent.c new file mode 100644 index 00000000..1f8293c4 --- /dev/null +++ b/Userspace/apps/test/libc_test/pwd/setpwent.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/signal/kill.c b/Userspace/apps/test/libc_test/signal/kill.c new file mode 100644 index 00000000..7ce61d2b --- /dev/null +++ b/Userspace/apps/test/libc_test/signal/kill.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/signal/killpg.c b/Userspace/apps/test/libc_test/signal/killpg.c new file mode 100644 index 00000000..7ce61d2b --- /dev/null +++ b/Userspace/apps/test/libc_test/signal/killpg.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/signal/psiginfo.c b/Userspace/apps/test/libc_test/signal/psiginfo.c new file mode 100644 index 00000000..7ce61d2b --- /dev/null +++ b/Userspace/apps/test/libc_test/signal/psiginfo.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/signal/psignal.c b/Userspace/apps/test/libc_test/signal/psignal.c new file mode 100644 index 00000000..7ce61d2b --- /dev/null +++ b/Userspace/apps/test/libc_test/signal/psignal.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/signal/pthread_kill.c b/Userspace/apps/test/libc_test/signal/pthread_kill.c new file mode 100644 index 00000000..7ce61d2b --- /dev/null +++ b/Userspace/apps/test/libc_test/signal/pthread_kill.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/signal/pthread_sigmask.c b/Userspace/apps/test/libc_test/signal/pthread_sigmask.c new file mode 100644 index 00000000..7ce61d2b --- /dev/null +++ b/Userspace/apps/test/libc_test/signal/pthread_sigmask.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/signal/raise.c b/Userspace/apps/test/libc_test/signal/raise.c new file mode 100644 index 00000000..7ce61d2b --- /dev/null +++ b/Userspace/apps/test/libc_test/signal/raise.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/signal/sig2str.c b/Userspace/apps/test/libc_test/signal/sig2str.c new file mode 100644 index 00000000..7ce61d2b --- /dev/null +++ b/Userspace/apps/test/libc_test/signal/sig2str.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/signal/sigaction.c b/Userspace/apps/test/libc_test/signal/sigaction.c new file mode 100644 index 00000000..7ce61d2b --- /dev/null +++ b/Userspace/apps/test/libc_test/signal/sigaction.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/signal/sigaddset.c b/Userspace/apps/test/libc_test/signal/sigaddset.c new file mode 100644 index 00000000..7ce61d2b --- /dev/null +++ b/Userspace/apps/test/libc_test/signal/sigaddset.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/signal/sigaltstack.c b/Userspace/apps/test/libc_test/signal/sigaltstack.c new file mode 100644 index 00000000..7ce61d2b --- /dev/null +++ b/Userspace/apps/test/libc_test/signal/sigaltstack.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/signal/sigdelset.c b/Userspace/apps/test/libc_test/signal/sigdelset.c new file mode 100644 index 00000000..7ce61d2b --- /dev/null +++ b/Userspace/apps/test/libc_test/signal/sigdelset.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/signal/sigemptyset.c b/Userspace/apps/test/libc_test/signal/sigemptyset.c new file mode 100644 index 00000000..7ce61d2b --- /dev/null +++ b/Userspace/apps/test/libc_test/signal/sigemptyset.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/signal/sigfillset.c b/Userspace/apps/test/libc_test/signal/sigfillset.c new file mode 100644 index 00000000..7ce61d2b --- /dev/null +++ b/Userspace/apps/test/libc_test/signal/sigfillset.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/signal/sigismember.c b/Userspace/apps/test/libc_test/signal/sigismember.c new file mode 100644 index 00000000..7ce61d2b --- /dev/null +++ b/Userspace/apps/test/libc_test/signal/sigismember.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/signal/signal.c b/Userspace/apps/test/libc_test/signal/signal.c new file mode 100644 index 00000000..7ce61d2b --- /dev/null +++ b/Userspace/apps/test/libc_test/signal/signal.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/signal/sigpending.c b/Userspace/apps/test/libc_test/signal/sigpending.c new file mode 100644 index 00000000..7ce61d2b --- /dev/null +++ b/Userspace/apps/test/libc_test/signal/sigpending.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/signal/sigprocmask.c b/Userspace/apps/test/libc_test/signal/sigprocmask.c new file mode 100644 index 00000000..7ce61d2b --- /dev/null +++ b/Userspace/apps/test/libc_test/signal/sigprocmask.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/signal/sigqueue.c b/Userspace/apps/test/libc_test/signal/sigqueue.c new file mode 100644 index 00000000..7ce61d2b --- /dev/null +++ b/Userspace/apps/test/libc_test/signal/sigqueue.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/signal/sigsuspend.c b/Userspace/apps/test/libc_test/signal/sigsuspend.c new file mode 100644 index 00000000..7ce61d2b --- /dev/null +++ b/Userspace/apps/test/libc_test/signal/sigsuspend.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/signal/sigtimedwait.c b/Userspace/apps/test/libc_test/signal/sigtimedwait.c new file mode 100644 index 00000000..7ce61d2b --- /dev/null +++ b/Userspace/apps/test/libc_test/signal/sigtimedwait.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/signal/sigwait.c b/Userspace/apps/test/libc_test/signal/sigwait.c new file mode 100644 index 00000000..7ce61d2b --- /dev/null +++ b/Userspace/apps/test/libc_test/signal/sigwait.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/signal/sigwaitinfo.c b/Userspace/apps/test/libc_test/signal/sigwaitinfo.c new file mode 100644 index 00000000..7ce61d2b --- /dev/null +++ b/Userspace/apps/test/libc_test/signal/sigwaitinfo.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/signal/str2sig.c b/Userspace/apps/test/libc_test/signal/str2sig.c new file mode 100644 index 00000000..7ce61d2b --- /dev/null +++ b/Userspace/apps/test/libc_test/signal/str2sig.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/clearerr.c b/Userspace/apps/test/libc_test/stdio/clearerr.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/clearerr.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/ctermid.c b/Userspace/apps/test/libc_test/stdio/ctermid.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/ctermid.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/dprintf.c b/Userspace/apps/test/libc_test/stdio/dprintf.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/dprintf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/fclose.c b/Userspace/apps/test/libc_test/stdio/fclose.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/fclose.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/fdopen.c b/Userspace/apps/test/libc_test/stdio/fdopen.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/fdopen.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/feof.c b/Userspace/apps/test/libc_test/stdio/feof.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/feof.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/ferror.c b/Userspace/apps/test/libc_test/stdio/ferror.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/ferror.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/fflush.c b/Userspace/apps/test/libc_test/stdio/fflush.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/fflush.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/fgetc.c b/Userspace/apps/test/libc_test/stdio/fgetc.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/fgetc.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/fgetpos.c b/Userspace/apps/test/libc_test/stdio/fgetpos.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/fgetpos.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/fgets.c b/Userspace/apps/test/libc_test/stdio/fgets.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/fgets.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/fileno.c b/Userspace/apps/test/libc_test/stdio/fileno.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/fileno.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/flockfile.c b/Userspace/apps/test/libc_test/stdio/flockfile.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/flockfile.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/fmemopen.c b/Userspace/apps/test/libc_test/stdio/fmemopen.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/fmemopen.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/fopen.c b/Userspace/apps/test/libc_test/stdio/fopen.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/fopen.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/fprintf.c b/Userspace/apps/test/libc_test/stdio/fprintf.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/fprintf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/fputc.c b/Userspace/apps/test/libc_test/stdio/fputc.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/fputc.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/fputs.c b/Userspace/apps/test/libc_test/stdio/fputs.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/fputs.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/fread.c b/Userspace/apps/test/libc_test/stdio/fread.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/fread.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/freopen.c b/Userspace/apps/test/libc_test/stdio/freopen.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/freopen.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/fscanf.c b/Userspace/apps/test/libc_test/stdio/fscanf.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/fscanf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/fseek.c b/Userspace/apps/test/libc_test/stdio/fseek.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/fseek.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/fseeko.c b/Userspace/apps/test/libc_test/stdio/fseeko.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/fseeko.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/fsetpos.c b/Userspace/apps/test/libc_test/stdio/fsetpos.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/fsetpos.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/ftell.c b/Userspace/apps/test/libc_test/stdio/ftell.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/ftell.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/ftello.c b/Userspace/apps/test/libc_test/stdio/ftello.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/ftello.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/ftrylockfile.c b/Userspace/apps/test/libc_test/stdio/ftrylockfile.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/ftrylockfile.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/funlockfile.c b/Userspace/apps/test/libc_test/stdio/funlockfile.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/funlockfile.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/fwrite.c b/Userspace/apps/test/libc_test/stdio/fwrite.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/fwrite.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/getc.c b/Userspace/apps/test/libc_test/stdio/getc.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/getc.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/getc_unlocked.c b/Userspace/apps/test/libc_test/stdio/getc_unlocked.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/getc_unlocked.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/getchar.c b/Userspace/apps/test/libc_test/stdio/getchar.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/getchar.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/getchar_unlocked.c b/Userspace/apps/test/libc_test/stdio/getchar_unlocked.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/getchar_unlocked.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/getdelim.c b/Userspace/apps/test/libc_test/stdio/getdelim.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/getdelim.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/getline.c b/Userspace/apps/test/libc_test/stdio/getline.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/getline.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/open_memstream.c b/Userspace/apps/test/libc_test/stdio/open_memstream.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/open_memstream.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/pclose.c b/Userspace/apps/test/libc_test/stdio/pclose.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/pclose.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/perror.c b/Userspace/apps/test/libc_test/stdio/perror.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/perror.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/popen.c b/Userspace/apps/test/libc_test/stdio/popen.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/popen.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/printf.c b/Userspace/apps/test/libc_test/stdio/printf.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/printf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/putc.c b/Userspace/apps/test/libc_test/stdio/putc.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/putc.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/putc_unlocked.c b/Userspace/apps/test/libc_test/stdio/putc_unlocked.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/putc_unlocked.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/putchar.c b/Userspace/apps/test/libc_test/stdio/putchar.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/putchar.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/putchar_unlocked.c b/Userspace/apps/test/libc_test/stdio/putchar_unlocked.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/putchar_unlocked.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/puts.c b/Userspace/apps/test/libc_test/stdio/puts.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/puts.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/remove.c b/Userspace/apps/test/libc_test/stdio/remove.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/remove.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/rename.c b/Userspace/apps/test/libc_test/stdio/rename.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/rename.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/renameat.c b/Userspace/apps/test/libc_test/stdio/renameat.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/renameat.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/rewind.c b/Userspace/apps/test/libc_test/stdio/rewind.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/rewind.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/scanf.c b/Userspace/apps/test/libc_test/stdio/scanf.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/scanf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/setbuf.c b/Userspace/apps/test/libc_test/stdio/setbuf.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/setbuf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/setvbuf.c b/Userspace/apps/test/libc_test/stdio/setvbuf.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/setvbuf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/snprintf.c b/Userspace/apps/test/libc_test/stdio/snprintf.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/snprintf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/sprintf.c b/Userspace/apps/test/libc_test/stdio/sprintf.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/sprintf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/sscanf.c b/Userspace/apps/test/libc_test/stdio/sscanf.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/sscanf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/tmpfile.c b/Userspace/apps/test/libc_test/stdio/tmpfile.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/tmpfile.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/tmpnam.c b/Userspace/apps/test/libc_test/stdio/tmpnam.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/tmpnam.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/ungetc.c b/Userspace/apps/test/libc_test/stdio/ungetc.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/ungetc.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/vdprintf.c b/Userspace/apps/test/libc_test/stdio/vdprintf.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/vdprintf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/vfprintf.c b/Userspace/apps/test/libc_test/stdio/vfprintf.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/vfprintf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/vfscanf.c b/Userspace/apps/test/libc_test/stdio/vfscanf.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/vfscanf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/vprintf.c b/Userspace/apps/test/libc_test/stdio/vprintf.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/vprintf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/vscanf.c b/Userspace/apps/test/libc_test/stdio/vscanf.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/vscanf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/vsnprintf.c b/Userspace/apps/test/libc_test/stdio/vsnprintf.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/vsnprintf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/vsprintf.c b/Userspace/apps/test/libc_test/stdio/vsprintf.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/vsprintf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdio/vsscanf.c b/Userspace/apps/test/libc_test/stdio/vsscanf.c new file mode 100644 index 00000000..ecc8285b --- /dev/null +++ b/Userspace/apps/test/libc_test/stdio/vsscanf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/a64l.c b/Userspace/apps/test/libc_test/stdlib/a64l.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/a64l.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/abort.c b/Userspace/apps/test/libc_test/stdlib/abort.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/abort.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/abs.c b/Userspace/apps/test/libc_test/stdlib/abs.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/abs.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/atexit.c b/Userspace/apps/test/libc_test/stdlib/atexit.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/atexit.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/atof.c b/Userspace/apps/test/libc_test/stdlib/atof.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/atof.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/atoi.c b/Userspace/apps/test/libc_test/stdlib/atoi.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/atoi.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/atol.c b/Userspace/apps/test/libc_test/stdlib/atol.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/atol.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/bsearch.c b/Userspace/apps/test/libc_test/stdlib/bsearch.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/bsearch.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/calloc.c b/Userspace/apps/test/libc_test/stdlib/calloc.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/calloc.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/div.c b/Userspace/apps/test/libc_test/stdlib/div.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/div.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/drand48.c b/Userspace/apps/test/libc_test/stdlib/drand48.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/drand48.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/ecvt.c b/Userspace/apps/test/libc_test/stdlib/ecvt.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/ecvt.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/erand48.c b/Userspace/apps/test/libc_test/stdlib/erand48.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/erand48.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/exit.c b/Userspace/apps/test/libc_test/stdlib/exit.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/exit.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/fcvt.c b/Userspace/apps/test/libc_test/stdlib/fcvt.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/fcvt.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/free.c b/Userspace/apps/test/libc_test/stdlib/free.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/free.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/gcvt.c b/Userspace/apps/test/libc_test/stdlib/gcvt.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/gcvt.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/getenv.c b/Userspace/apps/test/libc_test/stdlib/getenv.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/getenv.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/getsubopt.c b/Userspace/apps/test/libc_test/stdlib/getsubopt.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/getsubopt.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/grantpt.c b/Userspace/apps/test/libc_test/stdlib/grantpt.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/grantpt.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/initstate.c b/Userspace/apps/test/libc_test/stdlib/initstate.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/initstate.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/jrand48.c b/Userspace/apps/test/libc_test/stdlib/jrand48.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/jrand48.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/l64a.c b/Userspace/apps/test/libc_test/stdlib/l64a.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/l64a.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/labs.c b/Userspace/apps/test/libc_test/stdlib/labs.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/labs.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/lcong48.c b/Userspace/apps/test/libc_test/stdlib/lcong48.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/lcong48.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/ldiv.c b/Userspace/apps/test/libc_test/stdlib/ldiv.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/ldiv.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/lrand48.c b/Userspace/apps/test/libc_test/stdlib/lrand48.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/lrand48.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/malloc.c b/Userspace/apps/test/libc_test/stdlib/malloc.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/malloc.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/mblen.c b/Userspace/apps/test/libc_test/stdlib/mblen.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/mblen.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/mbstowcs.c b/Userspace/apps/test/libc_test/stdlib/mbstowcs.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/mbstowcs.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/mbtowc.c b/Userspace/apps/test/libc_test/stdlib/mbtowc.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/mbtowc.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/mkstemp.c b/Userspace/apps/test/libc_test/stdlib/mkstemp.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/mkstemp.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/mktemp.c b/Userspace/apps/test/libc_test/stdlib/mktemp.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/mktemp.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/mrand48.c b/Userspace/apps/test/libc_test/stdlib/mrand48.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/mrand48.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/nrand48.c b/Userspace/apps/test/libc_test/stdlib/nrand48.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/nrand48.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/ptsname.c b/Userspace/apps/test/libc_test/stdlib/ptsname.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/ptsname.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/putenv.c b/Userspace/apps/test/libc_test/stdlib/putenv.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/putenv.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/qsort.c b/Userspace/apps/test/libc_test/stdlib/qsort.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/qsort.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/rand.c b/Userspace/apps/test/libc_test/stdlib/rand.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/rand.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/rand_r.c b/Userspace/apps/test/libc_test/stdlib/rand_r.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/rand_r.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/random.c b/Userspace/apps/test/libc_test/stdlib/random.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/random.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/realloc.c b/Userspace/apps/test/libc_test/stdlib/realloc.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/realloc.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/realpath.c b/Userspace/apps/test/libc_test/stdlib/realpath.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/realpath.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/seed48.c b/Userspace/apps/test/libc_test/stdlib/seed48.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/seed48.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/setkey.c b/Userspace/apps/test/libc_test/stdlib/setkey.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/setkey.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/setstate.c b/Userspace/apps/test/libc_test/stdlib/setstate.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/setstate.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/srand.c b/Userspace/apps/test/libc_test/stdlib/srand.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/srand.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/srand48.c b/Userspace/apps/test/libc_test/stdlib/srand48.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/srand48.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/srandom.c b/Userspace/apps/test/libc_test/stdlib/srandom.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/srandom.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/strtod.c b/Userspace/apps/test/libc_test/stdlib/strtod.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/strtod.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/strtol.c b/Userspace/apps/test/libc_test/stdlib/strtol.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/strtol.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/strtoul.c b/Userspace/apps/test/libc_test/stdlib/strtoul.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/strtoul.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/system.c b/Userspace/apps/test/libc_test/stdlib/system.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/system.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/ttyslot.c b/Userspace/apps/test/libc_test/stdlib/ttyslot.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/ttyslot.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/unlockpt.c b/Userspace/apps/test/libc_test/stdlib/unlockpt.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/unlockpt.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/valloc.c b/Userspace/apps/test/libc_test/stdlib/valloc.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/valloc.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/wcstombs.c b/Userspace/apps/test/libc_test/stdlib/wcstombs.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/wcstombs.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/stdlib/wctomb.c b/Userspace/apps/test/libc_test/stdlib/wctomb.c new file mode 100644 index 00000000..01826b40 --- /dev/null +++ b/Userspace/apps/test/libc_test/stdlib/wctomb.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/string/memccpy.c b/Userspace/apps/test/libc_test/string/memccpy.c new file mode 100644 index 00000000..377a5f7c --- /dev/null +++ b/Userspace/apps/test/libc_test/string/memccpy.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/string/memchr.c b/Userspace/apps/test/libc_test/string/memchr.c new file mode 100644 index 00000000..377a5f7c --- /dev/null +++ b/Userspace/apps/test/libc_test/string/memchr.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/string/memcmp.c b/Userspace/apps/test/libc_test/string/memcmp.c new file mode 100644 index 00000000..377a5f7c --- /dev/null +++ b/Userspace/apps/test/libc_test/string/memcmp.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/string/memcpy.c b/Userspace/apps/test/libc_test/string/memcpy.c new file mode 100644 index 00000000..377a5f7c --- /dev/null +++ b/Userspace/apps/test/libc_test/string/memcpy.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/string/memmem.c b/Userspace/apps/test/libc_test/string/memmem.c new file mode 100644 index 00000000..377a5f7c --- /dev/null +++ b/Userspace/apps/test/libc_test/string/memmem.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/string/memmove.c b/Userspace/apps/test/libc_test/string/memmove.c new file mode 100644 index 00000000..377a5f7c --- /dev/null +++ b/Userspace/apps/test/libc_test/string/memmove.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/string/memset.c b/Userspace/apps/test/libc_test/string/memset.c new file mode 100644 index 00000000..377a5f7c --- /dev/null +++ b/Userspace/apps/test/libc_test/string/memset.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/string/stpcpy.c b/Userspace/apps/test/libc_test/string/stpcpy.c new file mode 100644 index 00000000..377a5f7c --- /dev/null +++ b/Userspace/apps/test/libc_test/string/stpcpy.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/string/stpncpy.c b/Userspace/apps/test/libc_test/string/stpncpy.c new file mode 100644 index 00000000..377a5f7c --- /dev/null +++ b/Userspace/apps/test/libc_test/string/stpncpy.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/string/strcat.c b/Userspace/apps/test/libc_test/string/strcat.c new file mode 100644 index 00000000..377a5f7c --- /dev/null +++ b/Userspace/apps/test/libc_test/string/strcat.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/string/strchr.c b/Userspace/apps/test/libc_test/string/strchr.c new file mode 100644 index 00000000..377a5f7c --- /dev/null +++ b/Userspace/apps/test/libc_test/string/strchr.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/string/strcmp.c b/Userspace/apps/test/libc_test/string/strcmp.c new file mode 100644 index 00000000..377a5f7c --- /dev/null +++ b/Userspace/apps/test/libc_test/string/strcmp.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/string/strcoll.c b/Userspace/apps/test/libc_test/string/strcoll.c new file mode 100644 index 00000000..377a5f7c --- /dev/null +++ b/Userspace/apps/test/libc_test/string/strcoll.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/string/strcoll_l.c b/Userspace/apps/test/libc_test/string/strcoll_l.c new file mode 100644 index 00000000..377a5f7c --- /dev/null +++ b/Userspace/apps/test/libc_test/string/strcoll_l.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/string/strcpy.c b/Userspace/apps/test/libc_test/string/strcpy.c new file mode 100644 index 00000000..377a5f7c --- /dev/null +++ b/Userspace/apps/test/libc_test/string/strcpy.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/string/strcspn.c b/Userspace/apps/test/libc_test/string/strcspn.c new file mode 100644 index 00000000..377a5f7c --- /dev/null +++ b/Userspace/apps/test/libc_test/string/strcspn.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/string/strdup.c b/Userspace/apps/test/libc_test/string/strdup.c new file mode 100644 index 00000000..377a5f7c --- /dev/null +++ b/Userspace/apps/test/libc_test/string/strdup.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/string/strerror.c b/Userspace/apps/test/libc_test/string/strerror.c new file mode 100644 index 00000000..377a5f7c --- /dev/null +++ b/Userspace/apps/test/libc_test/string/strerror.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/string/strerror_l.c b/Userspace/apps/test/libc_test/string/strerror_l.c new file mode 100644 index 00000000..377a5f7c --- /dev/null +++ b/Userspace/apps/test/libc_test/string/strerror_l.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/string/strerror_r.c b/Userspace/apps/test/libc_test/string/strerror_r.c new file mode 100644 index 00000000..377a5f7c --- /dev/null +++ b/Userspace/apps/test/libc_test/string/strerror_r.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/string/strlcat.c b/Userspace/apps/test/libc_test/string/strlcat.c new file mode 100644 index 00000000..377a5f7c --- /dev/null +++ b/Userspace/apps/test/libc_test/string/strlcat.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/string/strlcpy.c b/Userspace/apps/test/libc_test/string/strlcpy.c new file mode 100644 index 00000000..377a5f7c --- /dev/null +++ b/Userspace/apps/test/libc_test/string/strlcpy.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/string/strlen.c b/Userspace/apps/test/libc_test/string/strlen.c new file mode 100644 index 00000000..377a5f7c --- /dev/null +++ b/Userspace/apps/test/libc_test/string/strlen.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/string/strncat.c b/Userspace/apps/test/libc_test/string/strncat.c new file mode 100644 index 00000000..377a5f7c --- /dev/null +++ b/Userspace/apps/test/libc_test/string/strncat.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/string/strncmp.c b/Userspace/apps/test/libc_test/string/strncmp.c new file mode 100644 index 00000000..377a5f7c --- /dev/null +++ b/Userspace/apps/test/libc_test/string/strncmp.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/string/strncpy.c b/Userspace/apps/test/libc_test/string/strncpy.c new file mode 100644 index 00000000..377a5f7c --- /dev/null +++ b/Userspace/apps/test/libc_test/string/strncpy.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/string/strndup.c b/Userspace/apps/test/libc_test/string/strndup.c new file mode 100644 index 00000000..377a5f7c --- /dev/null +++ b/Userspace/apps/test/libc_test/string/strndup.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/string/strnlen.c b/Userspace/apps/test/libc_test/string/strnlen.c new file mode 100644 index 00000000..377a5f7c --- /dev/null +++ b/Userspace/apps/test/libc_test/string/strnlen.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/string/strpbrk.c b/Userspace/apps/test/libc_test/string/strpbrk.c new file mode 100644 index 00000000..377a5f7c --- /dev/null +++ b/Userspace/apps/test/libc_test/string/strpbrk.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/string/strrchr.c b/Userspace/apps/test/libc_test/string/strrchr.c new file mode 100644 index 00000000..377a5f7c --- /dev/null +++ b/Userspace/apps/test/libc_test/string/strrchr.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/string/strsignal.c b/Userspace/apps/test/libc_test/string/strsignal.c new file mode 100644 index 00000000..377a5f7c --- /dev/null +++ b/Userspace/apps/test/libc_test/string/strsignal.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/string/strspn.c b/Userspace/apps/test/libc_test/string/strspn.c new file mode 100644 index 00000000..377a5f7c --- /dev/null +++ b/Userspace/apps/test/libc_test/string/strspn.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/string/strstr.c b/Userspace/apps/test/libc_test/string/strstr.c new file mode 100644 index 00000000..377a5f7c --- /dev/null +++ b/Userspace/apps/test/libc_test/string/strstr.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/string/strtok.c b/Userspace/apps/test/libc_test/string/strtok.c new file mode 100644 index 00000000..377a5f7c --- /dev/null +++ b/Userspace/apps/test/libc_test/string/strtok.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/string/strtok_r.c b/Userspace/apps/test/libc_test/string/strtok_r.c new file mode 100644 index 00000000..377a5f7c --- /dev/null +++ b/Userspace/apps/test/libc_test/string/strtok_r.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/string/strxfrm.c b/Userspace/apps/test/libc_test/string/strxfrm.c new file mode 100644 index 00000000..377a5f7c --- /dev/null +++ b/Userspace/apps/test/libc_test/string/strxfrm.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/string/strxfrm_l.c b/Userspace/apps/test/libc_test/string/strxfrm_l.c new file mode 100644 index 00000000..377a5f7c --- /dev/null +++ b/Userspace/apps/test/libc_test/string/strxfrm_l.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/sys/wait/wait.c b/Userspace/apps/test/libc_test/sys/wait/wait.c new file mode 100644 index 00000000..3a0fc6be --- /dev/null +++ b/Userspace/apps/test/libc_test/sys/wait/wait.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/sys/wait/waitid.c b/Userspace/apps/test/libc_test/sys/wait/waitid.c new file mode 100644 index 00000000..3a0fc6be --- /dev/null +++ b/Userspace/apps/test/libc_test/sys/wait/waitid.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/sys/wait/waitpid.c b/Userspace/apps/test/libc_test/sys/wait/waitpid.c new file mode 100644 index 00000000..3a0fc6be --- /dev/null +++ b/Userspace/apps/test/libc_test/sys/wait/waitpid.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/template.c b/Userspace/apps/test/libc_test/template.c new file mode 100644 index 00000000..64133d72 --- /dev/null +++ b/Userspace/apps/test/libc_test/template.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/time/asctime.c b/Userspace/apps/test/libc_test/time/asctime.c new file mode 100644 index 00000000..64133d72 --- /dev/null +++ b/Userspace/apps/test/libc_test/time/asctime.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/time/clock.c b/Userspace/apps/test/libc_test/time/clock.c new file mode 100644 index 00000000..64133d72 --- /dev/null +++ b/Userspace/apps/test/libc_test/time/clock.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/time/clock_getcpuclockid.c b/Userspace/apps/test/libc_test/time/clock_getcpuclockid.c new file mode 100644 index 00000000..64133d72 --- /dev/null +++ b/Userspace/apps/test/libc_test/time/clock_getcpuclockid.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/time/clock_getres.c b/Userspace/apps/test/libc_test/time/clock_getres.c new file mode 100644 index 00000000..64133d72 --- /dev/null +++ b/Userspace/apps/test/libc_test/time/clock_getres.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/time/clock_gettime.c b/Userspace/apps/test/libc_test/time/clock_gettime.c new file mode 100644 index 00000000..64133d72 --- /dev/null +++ b/Userspace/apps/test/libc_test/time/clock_gettime.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/time/clock_nanosleep.c b/Userspace/apps/test/libc_test/time/clock_nanosleep.c new file mode 100644 index 00000000..64133d72 --- /dev/null +++ b/Userspace/apps/test/libc_test/time/clock_nanosleep.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/time/clock_settime.c b/Userspace/apps/test/libc_test/time/clock_settime.c new file mode 100644 index 00000000..64133d72 --- /dev/null +++ b/Userspace/apps/test/libc_test/time/clock_settime.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/time/ctime.c b/Userspace/apps/test/libc_test/time/ctime.c new file mode 100644 index 00000000..64133d72 --- /dev/null +++ b/Userspace/apps/test/libc_test/time/ctime.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/time/difftime.c b/Userspace/apps/test/libc_test/time/difftime.c new file mode 100644 index 00000000..64133d72 --- /dev/null +++ b/Userspace/apps/test/libc_test/time/difftime.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/time/getdate.c b/Userspace/apps/test/libc_test/time/getdate.c new file mode 100644 index 00000000..64133d72 --- /dev/null +++ b/Userspace/apps/test/libc_test/time/getdate.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/time/gmtime.c b/Userspace/apps/test/libc_test/time/gmtime.c new file mode 100644 index 00000000..64133d72 --- /dev/null +++ b/Userspace/apps/test/libc_test/time/gmtime.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/time/gmtime_r.c b/Userspace/apps/test/libc_test/time/gmtime_r.c new file mode 100644 index 00000000..64133d72 --- /dev/null +++ b/Userspace/apps/test/libc_test/time/gmtime_r.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/time/localtime.c b/Userspace/apps/test/libc_test/time/localtime.c new file mode 100644 index 00000000..64133d72 --- /dev/null +++ b/Userspace/apps/test/libc_test/time/localtime.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/time/localtime_r.c b/Userspace/apps/test/libc_test/time/localtime_r.c new file mode 100644 index 00000000..64133d72 --- /dev/null +++ b/Userspace/apps/test/libc_test/time/localtime_r.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/time/mktime.c b/Userspace/apps/test/libc_test/time/mktime.c new file mode 100644 index 00000000..64133d72 --- /dev/null +++ b/Userspace/apps/test/libc_test/time/mktime.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/time/nanosleep.c b/Userspace/apps/test/libc_test/time/nanosleep.c new file mode 100644 index 00000000..64133d72 --- /dev/null +++ b/Userspace/apps/test/libc_test/time/nanosleep.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/time/strftime.c b/Userspace/apps/test/libc_test/time/strftime.c new file mode 100644 index 00000000..64133d72 --- /dev/null +++ b/Userspace/apps/test/libc_test/time/strftime.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/time/strftime_l.c b/Userspace/apps/test/libc_test/time/strftime_l.c new file mode 100644 index 00000000..64133d72 --- /dev/null +++ b/Userspace/apps/test/libc_test/time/strftime_l.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/time/strptime.c b/Userspace/apps/test/libc_test/time/strptime.c new file mode 100644 index 00000000..64133d72 --- /dev/null +++ b/Userspace/apps/test/libc_test/time/strptime.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/time/time.c b/Userspace/apps/test/libc_test/time/time.c new file mode 100644 index 00000000..64133d72 --- /dev/null +++ b/Userspace/apps/test/libc_test/time/time.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/time/timer_create.c b/Userspace/apps/test/libc_test/time/timer_create.c new file mode 100644 index 00000000..64133d72 --- /dev/null +++ b/Userspace/apps/test/libc_test/time/timer_create.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/time/timer_delete.c b/Userspace/apps/test/libc_test/time/timer_delete.c new file mode 100644 index 00000000..64133d72 --- /dev/null +++ b/Userspace/apps/test/libc_test/time/timer_delete.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/time/timer_getoverrun.c b/Userspace/apps/test/libc_test/time/timer_getoverrun.c new file mode 100644 index 00000000..64133d72 --- /dev/null +++ b/Userspace/apps/test/libc_test/time/timer_getoverrun.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/time/timer_gettime.c b/Userspace/apps/test/libc_test/time/timer_gettime.c new file mode 100644 index 00000000..64133d72 --- /dev/null +++ b/Userspace/apps/test/libc_test/time/timer_gettime.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/time/timer_settime.c b/Userspace/apps/test/libc_test/time/timer_settime.c new file mode 100644 index 00000000..64133d72 --- /dev/null +++ b/Userspace/apps/test/libc_test/time/timer_settime.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/time/timespec_get.c b/Userspace/apps/test/libc_test/time/timespec_get.c new file mode 100644 index 00000000..64133d72 --- /dev/null +++ b/Userspace/apps/test/libc_test/time/timespec_get.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/time/tzset.c b/Userspace/apps/test/libc_test/time/tzset.c new file mode 100644 index 00000000..64133d72 --- /dev/null +++ b/Userspace/apps/test/libc_test/time/tzset.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/_exit.c b/Userspace/apps/test/libc_test/unistd/_exit.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/_exit.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/access.c b/Userspace/apps/test/libc_test/unistd/access.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/access.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/alarm.c b/Userspace/apps/test/libc_test/unistd/alarm.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/alarm.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/brk.c b/Userspace/apps/test/libc_test/unistd/brk.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/brk.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/chdir.c b/Userspace/apps/test/libc_test/unistd/chdir.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/chdir.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/chown.c b/Userspace/apps/test/libc_test/unistd/chown.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/chown.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/chroot.c b/Userspace/apps/test/libc_test/unistd/chroot.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/chroot.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/close.c b/Userspace/apps/test/libc_test/unistd/close.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/close.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/confstr.c b/Userspace/apps/test/libc_test/unistd/confstr.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/confstr.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/crypt.c b/Userspace/apps/test/libc_test/unistd/crypt.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/crypt.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/ctermid.c b/Userspace/apps/test/libc_test/unistd/ctermid.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/ctermid.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/cuserid.c b/Userspace/apps/test/libc_test/unistd/cuserid.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/cuserid.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/dup.c b/Userspace/apps/test/libc_test/unistd/dup.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/dup.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/dup2.c b/Userspace/apps/test/libc_test/unistd/dup2.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/dup2.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/encrypt.c b/Userspace/apps/test/libc_test/unistd/encrypt.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/encrypt.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/execl.c b/Userspace/apps/test/libc_test/unistd/execl.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/execl.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/execle.c b/Userspace/apps/test/libc_test/unistd/execle.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/execle.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/execlp.c b/Userspace/apps/test/libc_test/unistd/execlp.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/execlp.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/execv.c b/Userspace/apps/test/libc_test/unistd/execv.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/execv.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/execve.c b/Userspace/apps/test/libc_test/unistd/execve.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/execve.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/execvp.c b/Userspace/apps/test/libc_test/unistd/execvp.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/execvp.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/fchdir.c b/Userspace/apps/test/libc_test/unistd/fchdir.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/fchdir.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/fchown.c b/Userspace/apps/test/libc_test/unistd/fchown.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/fchown.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/fdatasync.c b/Userspace/apps/test/libc_test/unistd/fdatasync.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/fdatasync.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/fork.c b/Userspace/apps/test/libc_test/unistd/fork.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/fork.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/fpathconf.c b/Userspace/apps/test/libc_test/unistd/fpathconf.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/fpathconf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/fsync.c b/Userspace/apps/test/libc_test/unistd/fsync.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/fsync.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/ftruncate.c b/Userspace/apps/test/libc_test/unistd/ftruncate.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/ftruncate.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/getcwd.c b/Userspace/apps/test/libc_test/unistd/getcwd.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/getcwd.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/getdtablesize.c b/Userspace/apps/test/libc_test/unistd/getdtablesize.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/getdtablesize.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/getegid.c b/Userspace/apps/test/libc_test/unistd/getegid.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/getegid.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/geteuid.c b/Userspace/apps/test/libc_test/unistd/geteuid.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/geteuid.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/getgid.c b/Userspace/apps/test/libc_test/unistd/getgid.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/getgid.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/getgroups.c b/Userspace/apps/test/libc_test/unistd/getgroups.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/getgroups.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/gethostid.c b/Userspace/apps/test/libc_test/unistd/gethostid.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/gethostid.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/getlogin.c b/Userspace/apps/test/libc_test/unistd/getlogin.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/getlogin.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/getlogin_r.c b/Userspace/apps/test/libc_test/unistd/getlogin_r.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/getlogin_r.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/getopt.c b/Userspace/apps/test/libc_test/unistd/getopt.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/getopt.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/getpagesize.c b/Userspace/apps/test/libc_test/unistd/getpagesize.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/getpagesize.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/getpass.c b/Userspace/apps/test/libc_test/unistd/getpass.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/getpass.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/getpgid.c b/Userspace/apps/test/libc_test/unistd/getpgid.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/getpgid.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/getpgrp.c b/Userspace/apps/test/libc_test/unistd/getpgrp.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/getpgrp.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/getpid.c b/Userspace/apps/test/libc_test/unistd/getpid.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/getpid.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/getppid.c b/Userspace/apps/test/libc_test/unistd/getppid.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/getppid.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/getsid.c b/Userspace/apps/test/libc_test/unistd/getsid.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/getsid.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/getuid.c b/Userspace/apps/test/libc_test/unistd/getuid.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/getuid.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/getwd.c b/Userspace/apps/test/libc_test/unistd/getwd.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/getwd.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/isatty.c b/Userspace/apps/test/libc_test/unistd/isatty.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/isatty.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/lchown.c b/Userspace/apps/test/libc_test/unistd/lchown.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/lchown.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/link.c b/Userspace/apps/test/libc_test/unistd/link.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/link.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/lockf.c b/Userspace/apps/test/libc_test/unistd/lockf.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/lockf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/lseek.c b/Userspace/apps/test/libc_test/unistd/lseek.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/lseek.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/nice.c b/Userspace/apps/test/libc_test/unistd/nice.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/nice.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/pathconf.c b/Userspace/apps/test/libc_test/unistd/pathconf.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/pathconf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/pause.c b/Userspace/apps/test/libc_test/unistd/pause.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/pause.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/pipe.c b/Userspace/apps/test/libc_test/unistd/pipe.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/pipe.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/pread.c b/Userspace/apps/test/libc_test/unistd/pread.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/pread.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/pthread_atfork.c b/Userspace/apps/test/libc_test/unistd/pthread_atfork.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/pthread_atfork.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/pwrite.c b/Userspace/apps/test/libc_test/unistd/pwrite.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/pwrite.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/read.c b/Userspace/apps/test/libc_test/unistd/read.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/read.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/readlink.c b/Userspace/apps/test/libc_test/unistd/readlink.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/readlink.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/rmdir.c b/Userspace/apps/test/libc_test/unistd/rmdir.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/rmdir.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/sbrk.c b/Userspace/apps/test/libc_test/unistd/sbrk.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/sbrk.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/setgid.c b/Userspace/apps/test/libc_test/unistd/setgid.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/setgid.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/setpgid.c b/Userspace/apps/test/libc_test/unistd/setpgid.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/setpgid.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/setpgrp.c b/Userspace/apps/test/libc_test/unistd/setpgrp.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/setpgrp.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/setregid.c b/Userspace/apps/test/libc_test/unistd/setregid.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/setregid.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/setreuid.c b/Userspace/apps/test/libc_test/unistd/setreuid.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/setreuid.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/setsid.c b/Userspace/apps/test/libc_test/unistd/setsid.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/setsid.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/setuid.c b/Userspace/apps/test/libc_test/unistd/setuid.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/setuid.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/sleep.c b/Userspace/apps/test/libc_test/unistd/sleep.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/sleep.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/swab.c b/Userspace/apps/test/libc_test/unistd/swab.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/swab.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/symlink.c b/Userspace/apps/test/libc_test/unistd/symlink.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/symlink.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/sync.c b/Userspace/apps/test/libc_test/unistd/sync.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/sync.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/sysconf.c b/Userspace/apps/test/libc_test/unistd/sysconf.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/sysconf.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/tcgetpgrp.c b/Userspace/apps/test/libc_test/unistd/tcgetpgrp.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/tcgetpgrp.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/tcsetpgrp.c b/Userspace/apps/test/libc_test/unistd/tcsetpgrp.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/tcsetpgrp.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/truncate.c b/Userspace/apps/test/libc_test/unistd/truncate.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/truncate.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/ttyname.c b/Userspace/apps/test/libc_test/unistd/ttyname.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/ttyname.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/ttyname_r.c b/Userspace/apps/test/libc_test/unistd/ttyname_r.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/ttyname_r.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/ualarm.c b/Userspace/apps/test/libc_test/unistd/ualarm.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/ualarm.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/unlink.c b/Userspace/apps/test/libc_test/unistd/unlink.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/unlink.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/usleep.c b/Userspace/apps/test/libc_test/unistd/usleep.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/usleep.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/vfork.c b/Userspace/apps/test/libc_test/unistd/vfork.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/vfork.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include diff --git a/Userspace/apps/test/libc_test/unistd/write.c b/Userspace/apps/test/libc_test/unistd/write.c new file mode 100644 index 00000000..d2b2e83c --- /dev/null +++ b/Userspace/apps/test/libc_test/unistd/write.c @@ -0,0 +1,18 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include