diff options
author | Anton Kling <anton@kling.gg> | 2024-12-12 16:03:08 +0100 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2024-12-12 16:03:08 +0100 |
commit | b033314bf1901d436dc71d41d5e1f37dda47e511 (patch) | |
tree | 120bd137888a7f96904a47af7d20422608ffe225 /userland/libc/include/setjmp.h | |
parent | dcbcdbdc5bcfb86eca05fb655e3bf009d89e39e0 (diff) |
formatting: Use clang-format on all projects
This commit also add braces to all `if` statements.
Diffstat (limited to 'userland/libc/include/setjmp.h')
-rw-r--r-- | userland/libc/include/setjmp.h | 6 |
1 files changed, 3 insertions, 3 deletions
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; |