From 8ecfce5ec3a79ca46238565401d3eb66fb109492 Mon Sep 17 00:00:00 2001 From: Adequate Limited Date: Thu, 2 Apr 2026 18:44:20 -0400 Subject: [PATCH] fix: add missing trailing newline to extmath.h Clang on macOS with -Werror -Wnewline-eof treats a missing trailing newline as a hard error, breaking the macOS arm64 CI build for any project that includes this header. --- src/extmath.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/extmath.h b/src/extmath.h index ebb93c2..62cb877 100644 --- a/src/extmath.h +++ b/src/extmath.h @@ -56,4 +56,4 @@ int multi_sub(const void *ax, const void *bx, void *cx, int bytelen); #endif /* end include guard */ -#endif \ No newline at end of file +#endif