From 26c68379d0834321b78bd35b6adef7b87f667df9 Mon Sep 17 00:00:00 2001 From: Mylloon Date: Mon, 1 Jan 2024 10:48:14 +0100 Subject: [PATCH] fmt --- flap/runtime/runtime.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/flap/runtime/runtime.c b/flap/runtime/runtime.c index e428878..78d8654 100644 --- a/flap/runtime/runtime.c +++ b/flap/runtime/runtime.c @@ -36,6 +36,7 @@ int64_t write_block(intptr_t *block, int64_t n, intptr_t v) { return 0; } -void add_eight_int(int64_t x1,int64_t x2,int64_t x3,int64_t x4,int64_t x5, int64_t x6,int64_t x7,int64_t x8) { - return observe_int(x1+x2+x3+x4+x5+x6+x7+x8); +void add_eight_int(int64_t x1, int64_t x2, int64_t x3, int64_t x4, int64_t x5, + int64_t x6, int64_t x7, int64_t x8) { + return observe_int(x1 + x2 + x3 + x4 + x5 + x6 + x7 + x8); }