summaryrefslogtreecommitdiff
path: root/Userland/su.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-06-07 11:49:31 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-06-07 11:49:31 +0200
commitb07bbf383d551eca9a50667cda0daec3eb74e806 (patch)
treeee982b94d6df8d150a207892dcceb0cdd216934b /Userland/su.cpp
parentf7ede145b42043a81c7e50f85616e25875521b04 (diff)
downloadserenity-b07bbf383d551eca9a50667cda0daec3eb74e806.zip
Userland: Run clang-format on everything.
Diffstat (limited to 'Userland/su.cpp')
-rw-r--r--Userland/su.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/Userland/su.cpp b/Userland/su.cpp
index 354d97aa76..8f7a10aa82 100644
--- a/Userland/su.cpp
+++ b/Userland/su.cpp
@@ -1,8 +1,8 @@
-#include <unistd.h>
-#include <stdio.h>
-#include <pwd.h>
-#include <grp.h>
#include <alloca.h>
+#include <grp.h>
+#include <pwd.h>
+#include <stdio.h>
+#include <unistd.h>
extern "C" int main(int, char**);