summaryrefslogtreecommitdiff
path: root/tests/projects/pascal
diff options
context:
space:
mode:
authorruki <[email protected]>2025-11-10 06:35:04 +0800
committerGitHub <[email protected]>2025-11-10 06:35:04 +0800
commit2b01e46fcf619aaecb8435b0fac975e3aff0587f (patch)
tree8f005a8dfc3272e9f027560e5e1b5881a7a8bc70 /tests/projects/pascal
parenta1b0ec856e2c22aac84022feb05b6687912e3d6e (diff)
parent2c387895657ae13cd717d7f42f5baed5eb028a8e (diff)
Merge pull request #7008 from xmake-io/format
format code
Diffstat (limited to 'tests/projects/pascal')
-rw-r--r--tests/projects/pascal/console_with_c/src/foo.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/projects/pascal/console_with_c/src/foo.c b/tests/projects/pascal/console_with_c/src/foo.c
index 66ca7cfb4..0d56f5f09 100644
--- a/tests/projects/pascal/console_with_c/src/foo.c
+++ b/tests/projects/pascal/console_with_c/src/foo.c
@@ -1,7 +1,5 @@
#include <stdint.h>
-extern int64_t fib(int64_t n)
-{
+extern int64_t fib(int64_t n) {
return n > 1 ? fib(n - 1) + fib(n - 2) : 1;
}
-