From 78141b28c70c2871213def8325436356a48d2912 Mon Sep 17 00:00:00 2001 From: EnderIce2 Date: Tue, 25 Feb 2025 14:10:12 +0000 Subject: [PATCH] feat(userspace/apps/test/libc_test): rewrite a lot of the code and improve debugging with vscode using .devcontainer Signed-off-by: EnderIce2 --- .../test/libc_test/.devcontainer/Dockerfile | 19 + .../libc_test/.devcontainer/devcontainer.json | 41 + .../.devcontainer/reinstall-cmake.sh | 60 + Userspace/apps/test/libc_test/.editorconfig | 19 + Userspace/apps/test/libc_test/.gitignore | 2 + .../apps/test/libc_test/.vscode/launch.json | 2 +- .../apps/test/libc_test/.vscode/tasks.json | 2 +- Userspace/apps/test/libc_test/Makefile | 19 +- Userspace/apps/test/libc_test/README.md | 8 + Userspace/apps/test/libc_test/main.c | 180 +++ Userspace/apps/test/libc_test/math.c | 1302 +++++++++++++++++ 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 - Userspace/apps/test/libc_test/template.c | 18 - 190 files changed, 1648 insertions(+), 3228 deletions(-) create mode 100644 Userspace/apps/test/libc_test/.devcontainer/Dockerfile create mode 100644 Userspace/apps/test/libc_test/.devcontainer/devcontainer.json create mode 100644 Userspace/apps/test/libc_test/.devcontainer/reinstall-cmake.sh create mode 100644 Userspace/apps/test/libc_test/.editorconfig create mode 100644 Userspace/apps/test/libc_test/.gitignore create mode 100644 Userspace/apps/test/libc_test/README.md create mode 100644 Userspace/apps/test/libc_test/math.c delete mode 100644 Userspace/apps/test/libc_test/math/acos.c delete mode 100644 Userspace/apps/test/libc_test/math/acosf.c delete mode 100644 Userspace/apps/test/libc_test/math/acosh.c delete mode 100644 Userspace/apps/test/libc_test/math/acoshf.c delete mode 100644 Userspace/apps/test/libc_test/math/acoshl.c delete mode 100644 Userspace/apps/test/libc_test/math/acosl.c delete mode 100644 Userspace/apps/test/libc_test/math/asin.c delete mode 100644 Userspace/apps/test/libc_test/math/asinf.c delete mode 100644 Userspace/apps/test/libc_test/math/asinh.c delete mode 100644 Userspace/apps/test/libc_test/math/asinhf.c delete mode 100644 Userspace/apps/test/libc_test/math/asinhl.c delete mode 100644 Userspace/apps/test/libc_test/math/asinl.c delete mode 100644 Userspace/apps/test/libc_test/math/atan.c delete mode 100644 Userspace/apps/test/libc_test/math/atan2.c delete mode 100644 Userspace/apps/test/libc_test/math/atan2f.c delete mode 100644 Userspace/apps/test/libc_test/math/atan2l.c delete mode 100644 Userspace/apps/test/libc_test/math/atanf.c delete mode 100644 Userspace/apps/test/libc_test/math/atanh.c delete mode 100644 Userspace/apps/test/libc_test/math/atanhf.c delete mode 100644 Userspace/apps/test/libc_test/math/atanhl.c delete mode 100644 Userspace/apps/test/libc_test/math/atanl.c delete mode 100644 Userspace/apps/test/libc_test/math/cbrt.c delete mode 100644 Userspace/apps/test/libc_test/math/cbrtf.c delete mode 100644 Userspace/apps/test/libc_test/math/cbrtl.c delete mode 100644 Userspace/apps/test/libc_test/math/ceil.c delete mode 100644 Userspace/apps/test/libc_test/math/ceilf.c delete mode 100644 Userspace/apps/test/libc_test/math/ceill.c delete mode 100644 Userspace/apps/test/libc_test/math/copysign.c delete mode 100644 Userspace/apps/test/libc_test/math/copysignf.c delete mode 100644 Userspace/apps/test/libc_test/math/copysignl.c delete mode 100644 Userspace/apps/test/libc_test/math/cos.c delete mode 100644 Userspace/apps/test/libc_test/math/cosf.c delete mode 100644 Userspace/apps/test/libc_test/math/cosh.c delete mode 100644 Userspace/apps/test/libc_test/math/coshf.c delete mode 100644 Userspace/apps/test/libc_test/math/coshl.c delete mode 100644 Userspace/apps/test/libc_test/math/cosl.c delete mode 100644 Userspace/apps/test/libc_test/math/erf.c delete mode 100644 Userspace/apps/test/libc_test/math/erfc.c delete mode 100644 Userspace/apps/test/libc_test/math/erfcf.c delete mode 100644 Userspace/apps/test/libc_test/math/erfcl.c delete mode 100644 Userspace/apps/test/libc_test/math/erff.c delete mode 100644 Userspace/apps/test/libc_test/math/erfl.c delete mode 100644 Userspace/apps/test/libc_test/math/exp.c delete mode 100644 Userspace/apps/test/libc_test/math/exp2.c delete mode 100644 Userspace/apps/test/libc_test/math/exp2f.c delete mode 100644 Userspace/apps/test/libc_test/math/exp2l.c delete mode 100644 Userspace/apps/test/libc_test/math/expf.c delete mode 100644 Userspace/apps/test/libc_test/math/expl.c delete mode 100644 Userspace/apps/test/libc_test/math/expm1.c delete mode 100644 Userspace/apps/test/libc_test/math/expm1f.c delete mode 100644 Userspace/apps/test/libc_test/math/expm1l.c delete mode 100644 Userspace/apps/test/libc_test/math/fabs.c delete mode 100644 Userspace/apps/test/libc_test/math/fabsf.c delete mode 100644 Userspace/apps/test/libc_test/math/fabsl.c delete mode 100644 Userspace/apps/test/libc_test/math/fdim.c delete mode 100644 Userspace/apps/test/libc_test/math/fdimf.c delete mode 100644 Userspace/apps/test/libc_test/math/fdiml.c delete mode 100644 Userspace/apps/test/libc_test/math/floor.c delete mode 100644 Userspace/apps/test/libc_test/math/floorf.c delete mode 100644 Userspace/apps/test/libc_test/math/floorl.c delete mode 100644 Userspace/apps/test/libc_test/math/fma.c delete mode 100644 Userspace/apps/test/libc_test/math/fmaf.c delete mode 100644 Userspace/apps/test/libc_test/math/fmal.c delete mode 100644 Userspace/apps/test/libc_test/math/fmax.c delete mode 100644 Userspace/apps/test/libc_test/math/fmaxf.c delete mode 100644 Userspace/apps/test/libc_test/math/fmaxl.c delete mode 100644 Userspace/apps/test/libc_test/math/fmin.c delete mode 100644 Userspace/apps/test/libc_test/math/fminf.c delete mode 100644 Userspace/apps/test/libc_test/math/fminl.c delete mode 100644 Userspace/apps/test/libc_test/math/fmod.c delete mode 100644 Userspace/apps/test/libc_test/math/fmodf.c delete mode 100644 Userspace/apps/test/libc_test/math/fmodl.c delete mode 100644 Userspace/apps/test/libc_test/math/frexp.c delete mode 100644 Userspace/apps/test/libc_test/math/frexpf.c delete mode 100644 Userspace/apps/test/libc_test/math/frexpl.c delete mode 100644 Userspace/apps/test/libc_test/math/hypot.c delete mode 100644 Userspace/apps/test/libc_test/math/hypotf.c delete mode 100644 Userspace/apps/test/libc_test/math/hypotl.c delete mode 100644 Userspace/apps/test/libc_test/math/ilogb.c delete mode 100644 Userspace/apps/test/libc_test/math/ilogbf.c delete mode 100644 Userspace/apps/test/libc_test/math/ilogbl.c delete mode 100644 Userspace/apps/test/libc_test/math/j0.c delete mode 100644 Userspace/apps/test/libc_test/math/j1.c delete mode 100644 Userspace/apps/test/libc_test/math/jn.c delete mode 100644 Userspace/apps/test/libc_test/math/ldexp.c delete mode 100644 Userspace/apps/test/libc_test/math/ldexpf.c delete mode 100644 Userspace/apps/test/libc_test/math/ldexpl.c delete mode 100644 Userspace/apps/test/libc_test/math/lgamma.c delete mode 100644 Userspace/apps/test/libc_test/math/lgammaf.c delete mode 100644 Userspace/apps/test/libc_test/math/lgammal.c delete mode 100644 Userspace/apps/test/libc_test/math/llrint.c delete mode 100644 Userspace/apps/test/libc_test/math/llrintf.c delete mode 100644 Userspace/apps/test/libc_test/math/llrintl.c delete mode 100644 Userspace/apps/test/libc_test/math/llround.c delete mode 100644 Userspace/apps/test/libc_test/math/llroundf.c delete mode 100644 Userspace/apps/test/libc_test/math/llroundl.c delete mode 100644 Userspace/apps/test/libc_test/math/log.c delete mode 100644 Userspace/apps/test/libc_test/math/log10.c delete mode 100644 Userspace/apps/test/libc_test/math/log10f.c delete mode 100644 Userspace/apps/test/libc_test/math/log10l.c delete mode 100644 Userspace/apps/test/libc_test/math/log1p.c delete mode 100644 Userspace/apps/test/libc_test/math/log1pf.c delete mode 100644 Userspace/apps/test/libc_test/math/log1pl.c delete mode 100644 Userspace/apps/test/libc_test/math/log2.c delete mode 100644 Userspace/apps/test/libc_test/math/log2f.c delete mode 100644 Userspace/apps/test/libc_test/math/log2l.c delete mode 100644 Userspace/apps/test/libc_test/math/logb.c delete mode 100644 Userspace/apps/test/libc_test/math/logbf.c delete mode 100644 Userspace/apps/test/libc_test/math/logbl.c delete mode 100644 Userspace/apps/test/libc_test/math/logf.c delete mode 100644 Userspace/apps/test/libc_test/math/logl.c delete mode 100644 Userspace/apps/test/libc_test/math/lrint.c delete mode 100644 Userspace/apps/test/libc_test/math/lrintf.c delete mode 100644 Userspace/apps/test/libc_test/math/lrintl.c delete mode 100644 Userspace/apps/test/libc_test/math/lround.c delete mode 100644 Userspace/apps/test/libc_test/math/lroundf.c delete mode 100644 Userspace/apps/test/libc_test/math/lroundl.c delete mode 100644 Userspace/apps/test/libc_test/math/modf.c delete mode 100644 Userspace/apps/test/libc_test/math/modff.c delete mode 100644 Userspace/apps/test/libc_test/math/modfl.c delete mode 100644 Userspace/apps/test/libc_test/math/nan.c delete mode 100644 Userspace/apps/test/libc_test/math/nanf.c delete mode 100644 Userspace/apps/test/libc_test/math/nanl.c delete mode 100644 Userspace/apps/test/libc_test/math/nearbyint.c delete mode 100644 Userspace/apps/test/libc_test/math/nearbyintf.c delete mode 100644 Userspace/apps/test/libc_test/math/nearbyintl.c delete mode 100644 Userspace/apps/test/libc_test/math/nextafter.c delete mode 100644 Userspace/apps/test/libc_test/math/nextafterf.c delete mode 100644 Userspace/apps/test/libc_test/math/nextafterl.c delete mode 100644 Userspace/apps/test/libc_test/math/nexttoward.c delete mode 100644 Userspace/apps/test/libc_test/math/nexttowardf.c delete mode 100644 Userspace/apps/test/libc_test/math/nexttowardl.c delete mode 100644 Userspace/apps/test/libc_test/math/pow.c delete mode 100644 Userspace/apps/test/libc_test/math/powf.c delete mode 100644 Userspace/apps/test/libc_test/math/powl.c delete mode 100644 Userspace/apps/test/libc_test/math/remainder.c delete mode 100644 Userspace/apps/test/libc_test/math/remainderf.c delete mode 100644 Userspace/apps/test/libc_test/math/remainderl.c delete mode 100644 Userspace/apps/test/libc_test/math/remquo.c delete mode 100644 Userspace/apps/test/libc_test/math/remquof.c delete mode 100644 Userspace/apps/test/libc_test/math/remquol.c delete mode 100644 Userspace/apps/test/libc_test/math/rint.c delete mode 100644 Userspace/apps/test/libc_test/math/rintf.c delete mode 100644 Userspace/apps/test/libc_test/math/rintl.c delete mode 100644 Userspace/apps/test/libc_test/math/round.c delete mode 100644 Userspace/apps/test/libc_test/math/roundf.c delete mode 100644 Userspace/apps/test/libc_test/math/roundl.c delete mode 100644 Userspace/apps/test/libc_test/math/scalb.c delete mode 100644 Userspace/apps/test/libc_test/math/scalbln.c delete mode 100644 Userspace/apps/test/libc_test/math/scalblnf.c delete mode 100644 Userspace/apps/test/libc_test/math/scalblnl.c delete mode 100644 Userspace/apps/test/libc_test/math/scalbn.c delete mode 100644 Userspace/apps/test/libc_test/math/scalbnf.c delete mode 100644 Userspace/apps/test/libc_test/math/scalbnl.c delete mode 100644 Userspace/apps/test/libc_test/math/sin.c delete mode 100644 Userspace/apps/test/libc_test/math/sinf.c delete mode 100644 Userspace/apps/test/libc_test/math/sinh.c delete mode 100644 Userspace/apps/test/libc_test/math/sinhf.c delete mode 100644 Userspace/apps/test/libc_test/math/sinhl.c delete mode 100644 Userspace/apps/test/libc_test/math/sinl.c delete mode 100644 Userspace/apps/test/libc_test/math/sqrt.c delete mode 100644 Userspace/apps/test/libc_test/math/sqrtf.c delete mode 100644 Userspace/apps/test/libc_test/math/sqrtl.c delete mode 100644 Userspace/apps/test/libc_test/math/tan.c delete mode 100644 Userspace/apps/test/libc_test/math/tanf.c delete mode 100644 Userspace/apps/test/libc_test/math/tanh.c delete mode 100644 Userspace/apps/test/libc_test/math/tanhf.c delete mode 100644 Userspace/apps/test/libc_test/math/tanhl.c delete mode 100644 Userspace/apps/test/libc_test/math/tanl.c delete mode 100644 Userspace/apps/test/libc_test/math/tgamma.c delete mode 100644 Userspace/apps/test/libc_test/math/tgammaf.c delete mode 100644 Userspace/apps/test/libc_test/math/tgammal.c delete mode 100644 Userspace/apps/test/libc_test/math/trunc.c delete mode 100644 Userspace/apps/test/libc_test/math/truncf.c delete mode 100644 Userspace/apps/test/libc_test/math/truncl.c delete mode 100644 Userspace/apps/test/libc_test/math/y0.c delete mode 100644 Userspace/apps/test/libc_test/math/y1.c delete mode 100644 Userspace/apps/test/libc_test/math/yn.c delete mode 100644 Userspace/apps/test/libc_test/template.c diff --git a/Userspace/apps/test/libc_test/.devcontainer/Dockerfile b/Userspace/apps/test/libc_test/.devcontainer/Dockerfile new file mode 100644 index 00000000..d8ea2e2c --- /dev/null +++ b/Userspace/apps/test/libc_test/.devcontainer/Dockerfile @@ -0,0 +1,19 @@ +FROM mcr.microsoft.com/devcontainers/cpp:ubuntu-24.04 + +ARG REINSTALL_CMAKE_VERSION_FROM_SOURCE="none" + +# Optionally install the cmake for vcpkg +COPY ./reinstall-cmake.sh /tmp/ + +RUN if [ "${REINSTALL_CMAKE_VERSION_FROM_SOURCE}" != "none" ]; then \ + chmod +x /tmp/reinstall-cmake.sh && /tmp/reinstall-cmake.sh ${REINSTALL_CMAKE_VERSION_FROM_SOURCE}; \ + fi \ + && rm -f /tmp/reinstall-cmake.sh + +# [Optional] Uncomment this section to install additional vcpkg ports. +# RUN su vscode -c "${VCPKG_ROOT}/vcpkg install " + +# [Optional] Uncomment this section to install additional packages. +RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \ + && apt-get -y install --no-install-recommends build-essential make gdb git + diff --git a/Userspace/apps/test/libc_test/.devcontainer/devcontainer.json b/Userspace/apps/test/libc_test/.devcontainer/devcontainer.json new file mode 100644 index 00000000..d2079919 --- /dev/null +++ b/Userspace/apps/test/libc_test/.devcontainer/devcontainer.json @@ -0,0 +1,41 @@ +// For format details, see https://aka.ms/devcontainer.json. For config options, see the +// README at: https://github.com/devcontainers/templates/tree/main/src/cpp +{ + "name": "C++", + "build": { + "dockerfile": "Dockerfile" + }, + + "customizations": { + // Configure properties specific to VS Code. + "vscode": { + "settings": {}, + "extensions": [ + "ms-vsliveshare.vsliveshare", + "ms-azuretools.vscode-docker", + "ms-vscode.cpptools", + "ms-vscode.makefile-tools", + "vivaxy.vscode-conventional-commits", + "EditorConfig.EditorConfig", + "eamodio.gitlens", + "ms-vscode.hexeditor" + ] + } + } + + // Features to add to the dev container. More info: https://containers.dev/features. + // "features": {}, + + // Use 'forwardPorts' to make a list of ports inside the container available locally. + // "forwardPorts": [], + + // Use 'postCreateCommand' to run commands after the container is created. + // "postCreateCommand": "gcc -v", + + // Configure tool-specific properties. + // "customizations": {}, + + // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. + // "remoteUser": "root" +} + diff --git a/Userspace/apps/test/libc_test/.devcontainer/reinstall-cmake.sh b/Userspace/apps/test/libc_test/.devcontainer/reinstall-cmake.sh new file mode 100644 index 00000000..368f2e6a --- /dev/null +++ b/Userspace/apps/test/libc_test/.devcontainer/reinstall-cmake.sh @@ -0,0 +1,60 @@ +#!/usr/bin/env bash +#------------------------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information. +#------------------------------------------------------------------------------------------------------------- +# +set -e + +CMAKE_VERSION=${1:-"none"} + +if [ "${CMAKE_VERSION}" = "none" ]; then + echo "No CMake version specified, skipping CMake reinstallation" + exit 0 +fi + +# Cleanup temporary directory and associated files when exiting the script. +cleanup() { + EXIT_CODE=$? + set +e + if [[ -n "${TMP_DIR}" ]]; then + echo "Executing cleanup of tmp files" + rm -Rf "${TMP_DIR}" + fi + exit $EXIT_CODE +} +trap cleanup EXIT + + +echo "Installing CMake..." +apt-get -y purge --auto-remove cmake +mkdir -p /opt/cmake + +architecture=$(dpkg --print-architecture) +case "${architecture}" in + arm64) + ARCH=aarch64 ;; + amd64) + ARCH=x86_64 ;; + *) + echo "Unsupported architecture ${architecture}." + exit 1 + ;; +esac + +CMAKE_BINARY_NAME="cmake-${CMAKE_VERSION}-linux-${ARCH}.sh" +CMAKE_CHECKSUM_NAME="cmake-${CMAKE_VERSION}-SHA-256.txt" +TMP_DIR=$(mktemp -d -t cmake-XXXXXXXXXX) + +echo "${TMP_DIR}" +cd "${TMP_DIR}" + +curl -sSL "https://github.com/Kitware/CMake/releases/download/v${CMAKE_VERSION}/${CMAKE_BINARY_NAME}" -O +curl -sSL "https://github.com/Kitware/CMake/releases/download/v${CMAKE_VERSION}/${CMAKE_CHECKSUM_NAME}" -O + +sha256sum -c --ignore-missing "${CMAKE_CHECKSUM_NAME}" +sh "${TMP_DIR}/${CMAKE_BINARY_NAME}" --prefix=/opt/cmake --skip-license + +ln -s /opt/cmake/bin/cmake /usr/local/bin/cmake +ln -s /opt/cmake/bin/ctest /usr/local/bin/ctest + diff --git a/Userspace/apps/test/libc_test/.editorconfig b/Userspace/apps/test/libc_test/.editorconfig new file mode 100644 index 00000000..74d8a082 --- /dev/null +++ b/Userspace/apps/test/libc_test/.editorconfig @@ -0,0 +1,19 @@ +# EditorConfig is awesome: https://editorconfig.org + +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +indent_style = tab +indent_size = 4 + +[Makefile] +indent_style = tab + +[*.json] +insert_final_newline = false + +[compose.yaml] +indent_style = space diff --git a/Userspace/apps/test/libc_test/.gitignore b/Userspace/apps/test/libc_test/.gitignore new file mode 100644 index 00000000..20596b55 --- /dev/null +++ b/Userspace/apps/test/libc_test/.gitignore @@ -0,0 +1,2 @@ +*.o +*.elf diff --git a/Userspace/apps/test/libc_test/.vscode/launch.json b/Userspace/apps/test/libc_test/.vscode/launch.json index d3036daf..adeb5931 100644 --- a/Userspace/apps/test/libc_test/.vscode/launch.json +++ b/Userspace/apps/test/libc_test/.vscode/launch.json @@ -27,4 +27,4 @@ "preLaunchTask": "run-make" } ] -} +} \ No newline at end of file diff --git a/Userspace/apps/test/libc_test/.vscode/tasks.json b/Userspace/apps/test/libc_test/.vscode/tasks.json index c8104e07..a5d9a203 100644 --- a/Userspace/apps/test/libc_test/.vscode/tasks.json +++ b/Userspace/apps/test/libc_test/.vscode/tasks.json @@ -23,4 +23,4 @@ } } ] -} +} \ No newline at end of file diff --git a/Userspace/apps/test/libc_test/Makefile b/Userspace/apps/test/libc_test/Makefile index c8942269..cb74a87d 100644 --- a/Userspace/apps/test/libc_test/Makefile +++ b/Userspace/apps/test/libc_test/Makefile @@ -14,13 +14,24 @@ build: $(FILENAME).elf cp $(FILENAME).elf $(WORKSPACE_DIR)/out/bin/$(FILENAME) # Use static linking -LDFLAGS += -static -fno-pic -fno-pie -Wl,-static -Wl,-Ttext=0x00600000 -CFLAGS += -ggdb3 -O0 -g -fdiagnostics-color=always +LDFLAGS += -ggdb3 -g -static -fno-pic -fno-pie -Wl,-static -Wl,-Ttext=0x00600000 +CFLAGS += -ggdb3 -g -O0 -fdiagnostics-color=always # Use default toolchain if not specified CC ?= gcc CXX ?= g++ AS ?= as +GDBSERVER ?= /usr/bin/gdbserver + +.PHONY: build_native run_native debug_native log_docker + +log_docker: +# docker compose logs -f libc_test + +debug_native: + $(MAKE) --quiet clean + $(MAKE) --quiet -j $(shell nproc) build_native + $(GDBSERVER) 0.0.0.0:9229 $(CURDIR)/$(FILENAME)_n.elf build_native: $(FILENAME)_n.elf @@ -30,11 +41,11 @@ run_native: $(FILENAME)_n.elf $(FILENAME).elf: $(OBJ) $(info Linking $@) - $(CC) $(LDFLAGS) $(SYSROOT) $(OBJ) -o $@ + $(CC) $(LDFLAGS) $(SYSROOT) $(OBJ) -o $@ -lm %.o: %.c $(HEADERS) $(info Compiling $<) - $(CC) $(CFLAGS) $(WARNCFLAG) -std=c17 -c $< -o $@ + $(CC) $(CFLAGS) $(WARNCFLAG) -std=c17 -c $< -o $@ -lm %.o: %.cpp $(HEADERS) $(info Compiling $<) diff --git a/Userspace/apps/test/libc_test/README.md b/Userspace/apps/test/libc_test/README.md new file mode 100644 index 00000000..4f4cb840 --- /dev/null +++ b/Userspace/apps/test/libc_test/README.md @@ -0,0 +1,8 @@ +# libc_test + +This is a simple test to check if the libc is working properly. + +I recommend you to use [devcontainer](https://code.visualstudio.com/docs/devcontainers/containers). It will make your life easier. + +> [!CAUTION] +> This is not fully working yet. diff --git a/Userspace/apps/test/libc_test/main.c b/Userspace/apps/test/libc_test/main.c index 411e1cb9..cde209a4 100644 --- a/Userspace/apps/test/libc_test/main.c +++ b/Userspace/apps/test/libc_test/main.c @@ -129,6 +129,186 @@ int main(int, char *[]) TEST(test_strxfrm); TEST(test_strxfrm_l); + printf("--- math.h ---\n"); + TEST(test_acos); + TEST(test_acosf); + TEST(test_acosh); + TEST(test_acoshf); + TEST(test_acoshl); + TEST(test_acosl); + TEST(test_asin); + TEST(test_asinf); + TEST(test_asinh); + TEST(test_asinhf); + TEST(test_asinhl); + TEST(test_asinl); + TEST(test_atan); + TEST(test_atan2); + TEST(test_atan2f); + TEST(test_atan2l); + TEST(test_atanf); + TEST(test_atanh); + TEST(test_atanhf); + TEST(test_atanhl); + TEST(test_atanl); + TEST(test_cbrt); + TEST(test_cbrtf); + TEST(test_cbrtl); + TEST(test_ceil); + TEST(test_ceilf); + TEST(test_ceill); + TEST(test_copysign); + TEST(test_copysignf); + TEST(test_copysignl); + TEST(test_cos); + TEST(test_cosf); + TEST(test_cosh); + TEST(test_coshf); + TEST(test_coshl); + TEST(test_cosl); + TEST(test_erf); + TEST(test_erfc); + TEST(test_erfcf); + TEST(test_erfcl); + TEST(test_erff); + TEST(test_erfl); + TEST(test_exp); + TEST(test_exp2); + TEST(test_exp2f); + TEST(test_exp2l); + TEST(test_expf); + TEST(test_expl); + TEST(test_expm1); + TEST(test_expm1f); + TEST(test_expm1l); + TEST(test_fabs); + TEST(test_fabsf); + TEST(test_fabsl); + TEST(test_fdim); + TEST(test_fdimf); + TEST(test_fdiml); + TEST(test_floor); + TEST(test_floorf); + TEST(test_floorl); + TEST(test_fma); + TEST(test_fmaf); + TEST(test_fmal); + TEST(test_fmax); + TEST(test_fmaxf); + TEST(test_fmaxl); + TEST(test_fmin); + TEST(test_fminf); + TEST(test_fminl); + TEST(test_fmod); + TEST(test_fmodf); + TEST(test_fmodl); + TEST(test_frexp); + TEST(test_frexpf); + TEST(test_frexpl); + TEST(test_hypot); + TEST(test_hypotf); + TEST(test_hypotl); + TEST(test_ilogb); + TEST(test_ilogbf); + TEST(test_ilogbl); + TEST(test_j0); + TEST(test_j1); + TEST(test_jn); + TEST(test_ldexp); + TEST(test_ldexpf); + TEST(test_ldexpl); + TEST(test_lgamma); + TEST(test_lgammaf); + TEST(test_lgammal); + TEST(test_llrint); + TEST(test_llrintf); + TEST(test_llrintl); + TEST(test_llround); + TEST(test_llroundf); + TEST(test_llroundl); + TEST(test_log); + TEST(test_log10); + TEST(test_log10f); + TEST(test_log10l); + TEST(test_log1p); + TEST(test_log1pf); + TEST(test_log1pl); + TEST(test_log2); + TEST(test_log2f); + TEST(test_log2l); + TEST(test_logb); + TEST(test_logbf); + TEST(test_logbl); + TEST(test_logf); + TEST(test_logl); + TEST(test_lrint); + TEST(test_lrintf); + TEST(test_lrintl); + TEST(test_lround); + TEST(test_lroundf); + TEST(test_lroundl); + TEST(test_modf); + TEST(test_modff); + TEST(test_modfl); + TEST(test_nan); + TEST(test_nanf); + TEST(test_nanl); + TEST(test_nearbyint); + TEST(test_nearbyintf); + TEST(test_nearbyintl); + TEST(test_nextafter); + TEST(test_nextafterf); + TEST(test_nextafterl); + TEST(test_nexttoward); + TEST(test_nexttowardf); + TEST(test_nexttowardl); + TEST(test_pow); + TEST(test_powf); + TEST(test_powl); + TEST(test_remainder); + TEST(test_remainderf); + TEST(test_remainderl); + TEST(test_remquo); + TEST(test_remquof); + TEST(test_remquol); + TEST(test_rint); + TEST(test_rintf); + TEST(test_rintl); + TEST(test_round); + TEST(test_roundf); + TEST(test_roundl); + TEST(test_scalb); + TEST(test_scalbln); + TEST(test_scalblnf); + TEST(test_scalblnl); + TEST(test_scalbn); + TEST(test_scalbnf); + TEST(test_scalbnl); + TEST(test_sin); + TEST(test_sinf); + TEST(test_sinh); + TEST(test_sinhf); + TEST(test_sinhl); + TEST(test_sinl); + TEST(test_sqrt); + TEST(test_sqrtf); + TEST(test_sqrtl); + TEST(test_tan); + TEST(test_tanf); + TEST(test_tanh); + TEST(test_tanhf); + TEST(test_tanhl); + TEST(test_tanl); + TEST(test_tgamma); + TEST(test_tgammaf); + TEST(test_tgammal); + TEST(test_trunc); + TEST(test_truncf); + TEST(test_truncl); + TEST(test_y0); + TEST(test_y1); + TEST(test_yn); + // TEST(); printf("-------------------------------------------\n"); diff --git a/Userspace/apps/test/libc_test/math.c b/Userspace/apps/test/libc_test/math.c new file mode 100644 index 00000000..68ad79d3 --- /dev/null +++ b/Userspace/apps/test/libc_test/math.c @@ -0,0 +1,1302 @@ +/* + This file is part of Fennix Userspace. + + Fennix Userspace is free software: you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + Fennix Userspace is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Fennix Userspace. If not, see . +*/ + +#include +#include +#include + +int test_acos() +{ + double result = acos(0.5); + double expected_result = 1.0471975511965976; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_acosf() +{ + float result = acosf(0.5f); + float expected_result = 1.0471975f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_acosh() +{ + double result = acosh(1.5); + double expected_result = 0.9624236501192069; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_acoshf() +{ + float result = acoshf(1.5f); + float expected_result = 0.9624237f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_acoshl() +{ + long double result = acoshl(1.5L); + long double expected_result = 0.9624236501192069L; + return fabsl(result - expected_result) < 1e-6L ? 0 : 1; +} + +int test_acosl() +{ + long double result = acosl(0.5L); + long double expected_result = 1.0471975511965976L; + return fabsl(result - expected_result) < 1e-6L ? 0 : 1; +} + +int test_asin() +{ + double result = asin(0.5); + double expected_result = 0.5235987755982989; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_asinf() +{ + float result = asinf(0.5f); + float expected_result = 0.5235988f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_asinh() +{ + double result = asinh(0.5); + double expected_result = 0.48121182505960347; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_asinhf() +{ + float result = asinhf(0.5f); + float expected_result = 0.4812118f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_asinhl() +{ + long double result = asinhl(0.5L); + long double expected_result = 0.48121182505960347L; + return fabsl(result - expected_result) < 1e-6L ? 0 : 1; +} + +int test_asinl() +{ + long double result = asinl(0.5L); + long double expected_result = 0.5235987755982989L; + return fabsl(result - expected_result) < 1e-6L ? 0 : 1; +} + +int test_atan() +{ + double result = atan(1.0); + double expected_result = 0.7853981633974483; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_atan2() +{ + double result = atan2(1.0, 1.0); + double expected_result = 0.7853981633974483; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_atan2f() +{ + float result = atan2f(1.0f, 1.0f); + float expected_result = 0.7853982f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_atan2l() +{ + long double result = atan2l(1.0L, 1.0L); + long double expected_result = 0.7853981633974483L; + return fabsl(result - expected_result) < 1e-6L ? 0 : 1; +} + +int test_atanf() +{ + float result = atanf(1.0f); + float expected_result = 0.7853982f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_atanh() +{ + double result = atanh(0.5); + double expected_result = 0.5493061443340548; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_atanhf() +{ + float result = atanhf(0.5f); + float expected_result = 0.5493061f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_atanhl() +{ + long double result = atanhl(0.5L); + long double expected_result = 0.5493061443340548L; + return fabsl(result - expected_result) < 1e-6L ? 0 : 1; +} + +int test_atanl() +{ + long double result = atanl(1.0L); + long double expected_result = 0.7853981633974483L; + return fabsl(result - expected_result) < 1e-6L ? 0 : 1; +} + +int test_cbrt() +{ + double result = cbrt(27.0); + double expected_result = 3.0; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_cbrtf() +{ + float result = cbrtf(27.0f); + float expected_result = 3.0f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_cbrtl() +{ + long double result = cbrtl(27.0L); + long double expected_result = 3.0L; + return fabsl(result - expected_result) < 1e-6L ? 0 : 1; +} + +int test_ceil() +{ + double result = ceil(2.3); + double expected_result = 3.0; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_ceilf() +{ + float result = ceilf(2.3f); + float expected_result = 3.0f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_ceill() +{ + long double result = ceill(2.3L); + long double expected_result = 3.0L; + return fabsl(result - expected_result) < 1e-6L ? 0 : 1; +} + +int test_copysign() +{ + double result = copysign(1.0, -1.0); + double expected_result = -1.0; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_copysignf() +{ + float result = copysignf(1.0f, -1.0f); + float expected_result = -1.0f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_copysignl() +{ + long double result = copysignl(1.0L, -1.0L); + long double expected_result = -1.0L; + return fabsl(result - expected_result) < 1e-6L ? 0 : 1; +} + +int test_cos() +{ + double result = cos(0.0); + double expected_result = 1.0; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_cosf() +{ + float result = cosf(0.0f); + float expected_result = 1.0f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_cosh() +{ + double result = cosh(0.0); + double expected_result = 1.0; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_coshf() +{ + float result = coshf(0.0f); + float expected_result = 1.0f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_coshl() +{ + long double result = coshl(0.0L); + long double expected_result = 1.0L; + return fabsl(result - expected_result) < 1e-6L ? 0 : 1; +} + +int test_cosl() +{ + long double result = cosl(0.0L); + long double expected_result = 1.0L; + return fabsl(result - expected_result) < 1e-6L ? 0 : 1; +} + +int test_erf() +{ + double result = erf(1.0); + double expected_result = 0.8427007929497149; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_erfc() +{ + double result = erfc(1.0); + double expected_result = 0.1572992070502851; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_erfcf() +{ + float result = erfcf(1.0f); + float expected_result = 0.1572992f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_erfcl() +{ + long double result = erfcl(1.0L); + long double expected_result = 0.1572992070502851L; + return fabsl(result - expected_result) < 1e-6L ? 0 : 1; +} + +int test_erff() +{ + float result = erff(1.0f); + float expected_result = 0.8427008f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_erfl() +{ + long double result = erfl(1.0L); + long double expected_result = 0.8427007929497149L; + return fabsl(result - expected_result) < 1e-6L ? 0 : 1; +} + +int test_exp() +{ + double result = exp(1.0); + double expected_result = 2.718281828459045; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_exp2() +{ + double result = exp2(3.0); + double expected_result = 8.0; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_exp2f() +{ + float result = exp2f(3.0f); + float expected_result = 8.0f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_exp2l() +{ + long double result = exp2l(3.0L); + long double expected_result = 8.0L; + return fabsl(result - expected_result) < 1e-6L ? 0 : 1; +} + +int test_expf() +{ + float result = expf(1.0f); + float expected_result = 2.7182817f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_expl() +{ + long double result = expl(1.0L); + long double expected_result = 2.718281828459045L; + return fabsl(result - expected_result) < 1e-6L ? 0 : 1; +} + +int test_expm1() +{ + double result = expm1(1.0); + double expected_result = 1.718281828459045; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_expm1f() +{ + float result = expm1f(1.0f); + float expected_result = 1.7182817f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_expm1l() +{ + long double result = expm1l(1.0L); + long double expected_result = 1.718281828459045L; + return fabsl(result - expected_result) < 1e-6L ? 0 : 1; +} + +int test_fabs() +{ + double result = fabs(-5.0); + double expected_result = 5.0; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_fabsf() +{ + float result = fabsf(-5.0f); + float expected_result = 5.0f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_fabsl() +{ + long double result = fabsl(-5.0L); + long double expected_result = 5.0L; + return fabsl(result - expected_result) < 1e-6L ? 0 : 1; +} + +int test_fdim() +{ + double result = fdim(5.0, 3.0); + double expected_result = 2.0; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_fdimf() +{ + float result = fdimf(5.0f, 3.0f); + float expected_result = 2.0f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_fdiml() +{ + long double result = fdiml(5.0L, 3.0L); + long double expected_result = 2.0L; + return fabsl(result - expected_result) < 1e-6L ? 0 : 1; +} + +int test_floor() +{ + double result = floor(2.7); + double expected_result = 2.0; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_floorf() +{ + float result = floorf(2.7f); + float expected_result = 2.0f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_floorl() +{ + long double result = floorl(2.7L); + long double expected_result = 2.0L; + return fabsl(result - expected_result) < 1e-6L ? 0 : 1; +} + +int test_fma() +{ + double result = fma(2.0, 3.0, 1.0); + double expected_result = 7.0; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_fmaf() +{ + float result = fmaf(2.0f, 3.0f, 1.0f); + float expected_result = 7.0f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_fmal() +{ + long double result = fmal(2.0L, 3.0L, 1.0L); + long double expected_result = 7.0L; + return fabsl(result - expected_result) < 1e-6L ? 0 : 1; +} + +int test_fmax() +{ + double result = fmax(3.0, 5.0); + double expected_result = 5.0; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_fmaxf() +{ + float result = fmaxf(3.0f, 5.0f); + float expected_result = 5.0f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_fmaxl() +{ + long double result = fmaxl(3.0L, 5.0L); + long double expected_result = 5.0L; + return fabsl(result - expected_result) < 1e-6L ? 0 : 1; +} + +int test_fmin() +{ + double result = fmin(3.0, 5.0); + double expected_result = 3.0; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_fminf() +{ + float result = fminf(3.0f, 5.0f); + float expected_result = 3.0f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_fminl() +{ + long double result = fminl(3.0L, 5.0L); + long double expected_result = 3.0L; + return fabsl(result - expected_result) < 1e-6L ? 0 : 1; +} + +int test_fmod() +{ + double result = fmod(5.0, 2.0); + double expected_result = 1.0; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_fmodf() +{ + float result = fmodf(5.0f, 2.0f); + float expected_result = 1.0f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_fmodl() +{ + long double result = fmodl(5.0L, 2.0L); + long double expected_result = 1.0L; + return fabsl(result - expected_result) < 1e-6L ? 0 : 1; +} + +int test_frexp() +{ + int exponent; + double result = frexp(5.0, &exponent); + double expected_result = 0.625; + int expected_exponent = 3; + + if (fabs(result - expected_result) < 1e-6 && exponent == expected_exponent) + return 0; + else + return 1; +} + +int test_frexpf() +{ + int exponent; + float result = frexpf(5.0f, &exponent); + float expected_result = 0.625f; + int expected_exponent = 3; + + if (fabs(result - expected_result) < 1e-6f && exponent == expected_exponent) + return 0; + else + return 1; +} + +int test_frexpl() +{ + int exponent; + long double result = frexpl(5.0L, &exponent); + long double expected_result = 0.625L; + int expected_exponent = 3; + + if (fabsl(result - expected_result) < 1e-6L && exponent == expected_exponent) + return 0; + else + return 1; +} + +int test_hypot() +{ + double result = hypot(3.0, 4.0); + double expected_result = 5.0; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_hypotf() +{ + float result = hypotf(3.0f, 4.0f); + float expected_result = 5.0f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_hypotl() +{ + long double result = hypotl(3.0L, 4.0L); + long double expected_result = 5.0L; + return fabsl(result - expected_result) < 1e-6L ? 0 : 1; +} + +int test_ilogb() +{ + double result = ilogb(32.0); + int expected_result = 5; + return result == expected_result ? 0 : 1; +} + +int test_ilogbf() +{ + float result = ilogbf(32.0f); + int expected_result = 5; + return result == expected_result ? 0 : 1; +} + +int test_ilogbl() +{ + long double result = ilogbl(32.0L); + int expected_result = 5; + return result == expected_result ? 0 : 1; +} + +int test_j0() +{ + double result = j0(1.0); + double expected_result = 0.765197686551; + return fabs(result - expected_result) < 1e-0 ? 0 : 1; +} + +int test_j1() +{ + double result = j1(1.0); + double expected_result = 0.440050585744; + return fabs(result - expected_result) < 1e-0 ? 0 : 1; +} + +int test_jn() +{ + double result = jn(2, 1.0); + double expected_result = -0.363268; + return fabs(result - expected_result) < 1e-0 ? 0 : 1; +} + +int test_ldexp() +{ + double result = ldexp(1.0, 2); + double expected_result = 4.0; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_ldexpf() +{ + float result = ldexpf(1.0f, 2); + float expected_result = 4.0f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_ldexpl() +{ + long double result = ldexpl(1.0L, 2); + long double expected_result = 4.0L; + return fabsl(result - expected_result) < 1e-6L ? 0 : 1; +} + +int test_lgamma() +{ + double result = lgamma(1.0); + double expected_result = 0.0; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_lgammaf() +{ + float result = lgammaf(1.0f); + float expected_result = 0.0f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_lgammal() +{ + long double result = lgammal(1.0L); + long double expected_result = 0.0L; + return fabsl(result - expected_result) < 1e-6L ? 0 : 1; +} + +int test_llrint() +{ + long long result = llrint(3.6); + long long expected_result = 4; + return result == expected_result ? 0 : 1; +} + +int test_llrintf() +{ + long long result = llrintf(3.6f); + long long expected_result = 4; + return result == expected_result ? 0 : 1; +} + +int test_llrintl() +{ + long long result = llrintl(3.6L); + long long expected_result = 4; + return result == expected_result ? 0 : 1; +} + +int test_llround() +{ + double result = llround(2.5); + long long expected_result = 3; + return result == expected_result ? 0 : 1; +} + +int test_llroundf() +{ + float result = llroundf(2.5f); + long long expected_result = 3; + return result == expected_result ? 0 : 1; +} + +int test_llroundl() +{ + long double result = llroundl(2.5L); + long long expected_result = 3; + return result == expected_result ? 0 : 1; +} + +int test_log() +{ + double result = log(1.0); + double expected_result = 0.0; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_log10() +{ + double result = log10(100.0); + double expected_result = 2.0; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_log10f() +{ + float result = log10f(100.0f); + float expected_result = 2.0f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_log10l() +{ + long double result = log10l(100.0L); + long double expected_result = 2.0L; + return fabsl(result - expected_result) < 1e-6L ? 0 : 1; +} + +int test_log1p() +{ + double result = log1p(1.0); + double expected_result = 0.6931471805599453; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_log1pf() +{ + float result = log1pf(1.0f); + float expected_result = 0.6931472f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_log1pl() +{ + long double result = log1pl(1.0L); + long double expected_result = 0.6931471805599453L; + return fabsl(result - expected_result) < 1e-6L ? 0 : 1; +} + +int test_log2() +{ + double result = log2(8.0); + double expected_result = 3.0; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_log2f() +{ + float result = log2f(8.0f); + float expected_result = 3.0f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_log2l() +{ + long double result = log2l(8.0L); + long double expected_result = 3.0L; + return fabsl(result - expected_result) < 1e-6L ? 0 : 1; +} + +int test_logb() +{ + double result = logb(8.0); + double expected_result = 3.0; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_logbf() +{ + float result = logbf(8.0f); + float expected_result = 3.0f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_logbl() +{ + long double result = logbl(8.0L); + long double expected_result = 3.0L; + return fabsl(result - expected_result) < 1e-6L ? 0 : 1; +} + +int test_logf() +{ + float result = logf(1.0f); + float expected_result = 0.0f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_logl() +{ + long double result = logl(1.0L); + long double expected_result = 0.0L; + return fabsl(result - expected_result) < 1e-6L ? 0 : 1; +} + +int test_lrint() +{ + long result = lrint(2.5); + long expected_result = 2; + return result == expected_result ? 0 : 1; +} + +int test_lrintf() +{ + long result = lrintf(2.5f); + long expected_result = 2; + return result == expected_result ? 0 : 1; +} + +int test_lrintl() +{ + long result = lrintl(2.5L); + long expected_result = 2; + return result == expected_result ? 0 : 1; +} + +int test_lround() +{ + double result = lround(2.5); + long expected_result = 3; + return result == expected_result ? 0 : 1; +} + +int test_lroundf() +{ + float result = lroundf(2.5f); + long expected_result = 3; + return result == expected_result ? 0 : 1; +} + +int test_lroundl() +{ + long double result = lroundl(2.5L); + long expected_result = 3; + return result == expected_result ? 0 : 1; +} + +int test_modf() +{ + double integer_part; + double result = modf(3.14, &integer_part); + double expected_result = 0.14; + double expected_integer_part = 3.0; + + if (fabs(result - expected_result) < 1e-6 && fabs(integer_part - expected_integer_part) < 1e-6) + return 0; + else + return 1; +} + +int test_modff() +{ + float integer_part; + float result = modff(3.14f, &integer_part); + float expected_result = 0.14f; + float expected_integer_part = 3.0f; + + if (fabs(result - expected_result) < 1e-6f && fabs(integer_part - expected_integer_part) < 1e-6f) + return 0; + else + return 1; +} + +int test_modfl() +{ + long double integer_part; + long double result = modfl(3.14L, &integer_part); + long double expected_result = 0.14L; + long double expected_integer_part = 3.0L; + + if (fabsl(result - expected_result) < 1e-6L && fabsl(integer_part - expected_integer_part) < 1e-6L) + return 0; + else + return 1; +} + +int test_nan() +{ + double result = nan(""); + return isnan(result) ? 0 : 1; +} + +int test_nanf() +{ + float result = nanf(""); + return isnan(result) ? 0 : 1; +} + +int test_nanl() +{ + long double result = nanl(""); + return isnan(result) ? 0 : 1; +} + +int test_nearbyint() +{ + double result = nearbyint(3.6); + double expected_result = 4.0; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_nearbyintf() +{ + float result = nearbyintf(3.6f); + float expected_result = 4.0f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_nearbyintl() +{ + long double result = nearbyintl(3.6L); + long double expected_result = 4.0L; + return fabsl(result - expected_result) < 1e-6L ? 0 : 1; +} + +int test_nextafter() +{ + double result = nextafter(1.0, 2.0); + double expected_result = 1.0000000000000002; + return fabs(result - expected_result) < 1e-16 ? 0 : 1; +} + +int test_nextafterf() +{ + float result = nextafterf(1.0f, 2.0f); + float expected_result = 1.0000001192092896f; + return fabs(result - expected_result) < 1e-7f ? 0 : 1; +} + +int test_nextafterl() +{ + long double result = nextafterl(1.0L, 2.0L); + long double expected_result = 1.0000000000000002L; + return fabsl(result - expected_result) < 1e-15L ? 0 : 1; +} + +int test_nexttoward() +{ + double result = nexttoward(1.0, 2.0); + double expected_result = 1.0000000000000002; + return fabs(result - expected_result) < 1e-16 ? 0 : 1; +} + +int test_nexttowardf() +{ + float result = nexttowardf(1.0f, 2.0f); + float expected_result = 1.0000001192092896f; + return fabs(result - expected_result) < 1e-7f ? 0 : 1; +} + +int test_nexttowardl() +{ + long double result = nexttowardl(1.0L, 2.0L); + long double expected_result = 1.0000000000000002L; + return fabsl(result - expected_result) < 1e-1L ? 0 : 1; +} + +int test_pow() +{ + double result = pow(2.0, 3.0); + double expected_result = 8.0; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_powf() +{ + float result = powf(2.0f, 3.0f); + float expected_result = 8.0f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_powl() +{ + long double result = powl(2.0L, 3.0L); + long double expected_result = 8.0L; + return fabsl(result - expected_result) < 1e-6L ? 0 : 1; +} + +int test_remainder() +{ + double result = remainder(5.3, 2.0); + double expected_result = -0.700000; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_remainderf() +{ + float result = remainderf(5.3f, 2.0f); + float expected_result = -0.700000f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_remainderl() +{ + long double result = remainderl(5.3L, 2.0L); + long double expected_result = -0.69999999999999999983; + return fabs(result - expected_result) < 1e-1 ? 0 : 1; +} + +int test_remquo() +{ + int quotient; + double result = remquo(5.3, 2.0, "ient); + double expected_result = -0.700000; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_remquof() +{ + int quotient; + float result = remquof(5.3f, 2.0f, "ient); + float expected_result = -0.700000; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_remquol() +{ + int quotient; + long double result = remquol(5.3L, 2.0L, "ient); + long double expected_result = -0.69999999999999999983; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_rint() +{ + double result = rint(2.5); + double expected_result = 2.000000; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_rintf() +{ + float result = rintf(2.5f); + float expected_result = 2.000000f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_rintl() +{ + long double result = rintl(2.5L); + long double expected_result = 2.00; + return fabsl(result - expected_result) < 1e-6L ? 0 : 1; +} + +int test_round() +{ + double result = round(2.5); + double expected_result = 3.0; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_roundf() +{ + float result = roundf(2.5f); + float expected_result = 3.0f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_roundl() +{ + long double result = roundl(2.5L); + long double expected_result = 3.0L; + return fabsl(result - expected_result) < 1e-6L ? 0 : 1; +} + +int test_scalb() +{ + double result = scalb(1.0, 2); + double expected_result = -64.0; + return fabs(result - expected_result) < 1e-16 ? 0 : 1; +} + +int test_scalbln() +{ + double result = scalbln(1.0, 2); + double expected_result = 4.0; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_scalblnf() +{ + float result = scalblnf(1.0f, 2); + float expected_result = 4.0f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_scalblnl() +{ + long double result = scalblnl(1.0L, 2); + long double expected_result = 4.0L; + return fabsl(result - expected_result) < 1e-6L ? 0 : 1; +} + +int test_scalbn() +{ + double result = scalbn(1.0, 2); + double expected_result = 4.0; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_scalbnf() +{ + float result = scalbnf(1.0f, 2); + float expected_result = 4.0f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_scalbnl() +{ + long double result = scalbnl(1.0L, 2); + long double expected_result = 4.0L; + return fabsl(result - expected_result) < 1e-6L ? 0 : 1; +} + +int test_sin() +{ + double result = sin(0.0); + double expected_result = 0.0; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_sinf() +{ + float result = sinf(0.0f); + float expected_result = 0.0f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_sinh() +{ + double result = sinh(0.0); + double expected_result = 0.0; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_sinhf() +{ + float result = sinhf(0.0f); + float expected_result = 0.0f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_sinhl() +{ + long double result = sinhl(0.0L); + long double expected_result = 0.0L; + return fabsl(result - expected_result) < 1e-6L ? 0 : 1; +} + +int test_sinl() +{ + long double result = sinl(0.0L); + long double expected_result = 0.0L; + return fabsl(result - expected_result) < 1e-6L ? 0 : 1; +} + +int test_sqrt() +{ + double result = sqrt(16.0); + double expected_result = 4.0; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_sqrtf() +{ + float result = sqrtf(16.0f); + float expected_result = 4.0f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_sqrtl() +{ + long double result = sqrtl(16.0L); + long double expected_result = 4.0L; + return fabsl(result - expected_result) < 1e-6L ? 0 : 1; +} + +int test_tan() +{ + double result = tan(0.0); + double expected_result = 0.0; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_tanf() +{ + float result = tanf(0.0f); + float expected_result = 0.0f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_tanh() +{ + double result = tanh(0.0); + double expected_result = 0.0; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_tanhf() +{ + float result = tanhf(0.0f); + float expected_result = 0.0f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_tanhl() +{ + long double result = tanhl(0.0L); + long double expected_result = 0.0L; + return fabsl(result - expected_result) < 1e-6L ? 0 : 1; +} + +int test_tanl() +{ + long double result = tanl(0.0L); + long double expected_result = 0.0L; + return fabsl(result - expected_result) < 1e-6L ? 0 : 1; +} + +int test_tgamma() +{ + double result = tgamma(4.0); + double expected_result = 6.0; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_tgammaf() +{ + float result = tgammaf(4.0f); + float expected_result = 6.0f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_tgammal() +{ + long double result = tgammal(4.0L); + long double expected_result = 6.0L; + return fabsl(result - expected_result) < 1e-6L ? 0 : 1; +} + +int test_trunc() +{ + double result = trunc(2.9); + double expected_result = 2.0; + return fabs(result - expected_result) < 1e-6 ? 0 : 1; +} + +int test_truncf() +{ + float result = truncf(2.9f); + float expected_result = 2.0f; + return fabs(result - expected_result) < 1e-6f ? 0 : 1; +} + +int test_truncl() +{ + long double result = truncl(2.9L); + long double expected_result = 2.0L; + return fabsl(result - expected_result) < 1e-6L ? 0 : 1; +} + +int test_y0() +{ + double result = y0(1.0); + double expected_result = 0.08825696421567697; + return fabs(result - expected_result) < 1e-1 ? 0 : 1; +} + +int test_y1() +{ + double result = y1(1.0); + double expected_result = 0.000000; + return fabs(result - expected_result) < 1e-1 ? 0 : 1; +} + +int test_yn() +{ + double result = yn(1, 1.0); + double expected_result = 0.000000; + return fabs(result - expected_result) < 1e-1 ? 0 : 1; +} diff --git a/Userspace/apps/test/libc_test/math/acos.c b/Userspace/apps/test/libc_test/math/acos.c deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/acos.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/acosf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/acosh.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/acoshf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/acoshl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/acosl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/asin.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/asinf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/asinh.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/asinhf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/asinhl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/asinl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/atan.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/atan2.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/atan2f.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/atan2l.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/atanf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/atanh.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/atanhf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/atanhl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/atanl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/cbrt.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/cbrtf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/cbrtl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/ceil.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/ceilf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/ceill.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/copysign.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/copysignf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/copysignl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/cos.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/cosf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/cosh.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/coshf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/coshl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/cosl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/erf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/erfc.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/erfcf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/erfcl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/erff.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/erfl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/exp.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/exp2.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/exp2f.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/exp2l.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/expf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/expl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/expm1.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/expm1f.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/expm1l.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/fabs.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/fabsf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/fabsl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/fdim.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/fdimf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/fdiml.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/floor.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/floorf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/floorl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/fma.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/fmaf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/fmal.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/fmax.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/fmaxf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/fmaxl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/fmin.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/fminf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/fminl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/fmod.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/fmodf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/fmodl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/frexp.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/frexpf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/frexpl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/hypot.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/hypotf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/hypotl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/ilogb.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/ilogbf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/ilogbl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/j0.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/j1.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/jn.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/ldexp.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/ldexpf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/ldexpl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/lgamma.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/lgammaf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/lgammal.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/llrint.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/llrintf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/llrintl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/llround.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/llroundf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/llroundl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/log.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/log10.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/log10f.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/log10l.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/log1p.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/log1pf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/log1pl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/log2.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/log2f.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/log2l.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/logb.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/logbf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/logbl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/logf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/logl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/lrint.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/lrintf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/lrintl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/lround.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/lroundf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/lroundl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/modf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/modff.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/modfl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/nan.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/nanf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/nanl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/nearbyint.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/nearbyintf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/nearbyintl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/nextafter.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/nextafterf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/nextafterl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/nexttoward.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/nexttowardf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/nexttowardl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/pow.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/powf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/powl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/remainder.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/remainderf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/remainderl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/remquo.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/remquof.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/remquol.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/rint.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/rintf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/rintl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/round.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/roundf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/roundl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/scalb.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/scalbln.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/scalblnf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/scalblnl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/scalbn.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/scalbnf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/scalbnl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/sin.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/sinf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/sinh.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/sinhf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/sinhl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/sinl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/sqrt.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/sqrtf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/sqrtl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/tan.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/tanf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/tanh.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/tanhf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/tanhl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/tanl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/tgamma.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/tgammaf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/tgammal.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/trunc.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/truncf.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/truncl.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/y0.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/y1.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a 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 deleted file mode 100644 index 11cc7a3b..00000000 --- a/Userspace/apps/test/libc_test/math/yn.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received 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 deleted file mode 100644 index 64133d72..00000000 --- a/Userspace/apps/test/libc_test/template.c +++ /dev/null @@ -1,18 +0,0 @@ -/* - This file is part of Fennix Userspace. - - Fennix Userspace is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. - - Fennix Userspace is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with Fennix Userspace. If not, see . -*/ - -#include