From b033314bf1901d436dc71d41d5e1f37dda47e511 Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Thu, 12 Dec 2024 16:03:08 +0100 Subject: formatting: Use clang-format on all projects This commit also add braces to all `if` statements. --- userland/libc/include/setjmp.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'userland/libc/include/setjmp.h') diff --git a/userland/libc/include/setjmp.h b/userland/libc/include/setjmp.h index ea15cf3..ec7e23c 100644 --- a/userland/libc/include/setjmp.h +++ b/userland/libc/include/setjmp.h @@ -2,9 +2,9 @@ #define SETJMP_H typedef unsigned long __jmp_buf[6]; typedef struct __jmp_buf_tag { - __jmp_buf __jb; - unsigned long __fl; - unsigned long __ss[128/sizeof(long)]; + __jmp_buf __jb; + unsigned long __fl; + unsigned long __ss[128 / sizeof(long)]; } jmp_buf[1]; typedef jmp_buf sigjmp_buf; -- cgit v1.2.3