diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-06-07 11:49:03 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-06-07 11:49:03 +0200 |
commit | 46527b72d7cfbeee163c1009e27805061fcddf09 (patch) | |
tree | 30fc4833a5f24e5a0b57d0d21c220d4fd6ba48d6 /LibC/ulimit.cpp | |
parent | 892acfb10d98014e8880fa957a14541020ec263c (diff) | |
download | serenity-46527b72d7cfbeee163c1009e27805061fcddf09.zip |
LibC: Run clang-format on everything.
Diffstat (limited to 'LibC/ulimit.cpp')
-rw-r--r-- | LibC/ulimit.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/LibC/ulimit.cpp b/LibC/ulimit.cpp index c16a06fe1a..14e7cb8c34 100644 --- a/LibC/ulimit.cpp +++ b/LibC/ulimit.cpp @@ -1,13 +1,12 @@ -#include <ulimit.h> #include <assert.h> +#include <ulimit.h> extern "C" { long ulimit(int cmd, long newlimit) { - (void) cmd; - (void) newlimit; + (void)cmd; + (void)newlimit; ASSERT_NOT_REACHED(); } - } |