diff --git a/reactos/lib/crt/crt.rbuild b/reactos/lib/crt/crt.rbuild index 3c082fa6b5f..55b5d95cd94 100644 --- a/reactos/lib/crt/crt.rbuild +++ b/reactos/lib/crt/crt.rbuild @@ -41,23 +41,32 @@ abnorter.c exhand2.c matherr.c - seh.s - unwind.c + + + seh.s + unwind.c + + xcptfil.c - chgsign.c - clearfp.c - cntrlfp.c + chgsign.c copysign.c fpclass.c fpecode.c fpreset.c isnan.c - logb.c nafter.c scalb.c - statfp.c + + + + clearfp.c + cntrlfp.c + logb.c + statfp.c + + access.c @@ -121,13 +130,12 @@ tanh.c pow_asm.c - - atan2.c - exp.c - fmod.c - ldexp.c - + + atan2.c + exp.c + fmod.c + ldexp.c atan_asm.s pow_asm.s log10_asm.s diff --git a/reactos/lib/crt/except/seh.s b/reactos/lib/crt/except/i386/seh.s similarity index 100% rename from reactos/lib/crt/except/seh.s rename to reactos/lib/crt/except/i386/seh.s diff --git a/reactos/lib/crt/except/unwind.c b/reactos/lib/crt/except/i386/unwind.c similarity index 100% rename from reactos/lib/crt/except/unwind.c rename to reactos/lib/crt/except/i386/unwind.c diff --git a/reactos/lib/crt/float/clearfp.c b/reactos/lib/crt/float/i386/clearfp.c similarity index 100% rename from reactos/lib/crt/float/clearfp.c rename to reactos/lib/crt/float/i386/clearfp.c diff --git a/reactos/lib/crt/float/cntrlfp.c b/reactos/lib/crt/float/i386/cntrlfp.c similarity index 100% rename from reactos/lib/crt/float/cntrlfp.c rename to reactos/lib/crt/float/i386/cntrlfp.c diff --git a/reactos/lib/crt/float/logb.c b/reactos/lib/crt/float/i386/logb.c similarity index 100% rename from reactos/lib/crt/float/logb.c rename to reactos/lib/crt/float/i386/logb.c diff --git a/reactos/lib/crt/float/statfp.c b/reactos/lib/crt/float/i386/statfp.c similarity index 100% rename from reactos/lib/crt/float/statfp.c rename to reactos/lib/crt/float/i386/statfp.c diff --git a/reactos/lib/crt/math/atan2.c b/reactos/lib/crt/math/i386/atan2.c similarity index 100% rename from reactos/lib/crt/math/atan2.c rename to reactos/lib/crt/math/i386/atan2.c diff --git a/reactos/lib/crt/math/exp.c b/reactos/lib/crt/math/i386/exp.c similarity index 100% rename from reactos/lib/crt/math/exp.c rename to reactos/lib/crt/math/i386/exp.c diff --git a/reactos/lib/crt/math/fmod.c b/reactos/lib/crt/math/i386/fmod.c similarity index 100% rename from reactos/lib/crt/math/fmod.c rename to reactos/lib/crt/math/i386/fmod.c diff --git a/reactos/lib/crt/math/ldexp.c b/reactos/lib/crt/math/i386/ldexp.c similarity index 100% rename from reactos/lib/crt/math/ldexp.c rename to reactos/lib/crt/math/i386/ldexp.c