diff --git a/jerry-core/ecma/builtin-objects/ecma-builtin-number.c b/jerry-core/ecma/builtin-objects/ecma-builtin-number.c index 26544080f..77caf8969 100644 --- a/jerry-core/ecma/builtin-objects/ecma-builtin-number.c +++ b/jerry-core/ecma/builtin-objects/ecma-builtin-number.c @@ -13,6 +13,8 @@ * limitations under the License. */ +#include + #include "ecma-alloc.h" #include "ecma-builtins.h" #include "ecma-conversion.h" @@ -24,7 +26,6 @@ #include "ecma-objects.h" #include "ecma-try-catch-macro.h" #include "jrt.h" -#include "math.h" #if ENABLED (JERRY_BUILTIN_NUMBER) diff --git a/jerry-core/ecma/builtin-objects/typedarray/ecma-builtin-typedarray-prototype.c b/jerry-core/ecma/builtin-objects/typedarray/ecma-builtin-typedarray-prototype.c index ce3fbd1ce..94574c004 100644 --- a/jerry-core/ecma/builtin-objects/typedarray/ecma-builtin-typedarray-prototype.c +++ b/jerry-core/ecma/builtin-objects/typedarray/ecma-builtin-typedarray-prototype.c @@ -13,26 +13,27 @@ * limitations under the License. */ +#include + +#include "ecma-arraybuffer-object.h" #include "ecma-builtin-helpers.h" #include "ecma-builtin-typedarray-helpers.h" #include "ecma-builtins.h" #include "ecma-comparison.h" +#include "ecma-conversion.h" #include "ecma-exceptions.h" +#include "ecma-function-object.h" +#include "ecma-gc.h" #include "ecma-globals.h" #include "ecma-helpers.h" -#include "ecma-objects.h" -#include "ecma-conversion.h" -#include "ecma-function-object.h" -#include "ecma-typedarray-object.h" -#include "ecma-arraybuffer-object.h" -#include "ecma-try-catch-macro.h" -#include "jrt.h" -#include "jrt-libc-includes.h" -#include "jcontext.h" -#include "ecma-gc.h" -#include "jmem.h" #include "ecma-iterator-object.h" -#include "math.h" +#include "ecma-objects.h" +#include "ecma-try-catch-macro.h" +#include "ecma-typedarray-object.h" +#include "jcontext.h" +#include "jmem.h" +#include "jrt-libc-includes.h" +#include "jrt.h" #if ENABLED (JERRY_ES2015_BUILTIN_TYPEDARRAY)