summaryrefslogtreecommitdiff
path: root/tests/projects/pascal
diff options
context:
space:
mode:
authorruki <[email protected]>2025-11-09 19:51:04 +0800
committerruki <[email protected]>2025-11-09 19:51:04 +0800
commit91f6ed08fe32e36d555129efa4afdd82113f0eb4 (patch)
tree2bfee23488c8479c83833677262ee83b9e362cbb /tests/projects/pascal
parentc89c94bf89e98c8e42e786aacc0b334a57474179 (diff)
format tests and templates
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;
}
-