Re-indent entry points to functions
diff --git a/execute_program.c b/execute_program.c
index 6697386..dfc27f4 100644
--- a/execute_program.c
+++ b/execute_program.c
@@ -17,8 +17,8 @@
#include "debug.h"
#include "sysdep.h"
-static void change_uid(struct process *proc)
-{
+static void
+change_uid(struct process *proc) {
uid_t run_uid, run_euid;
gid_t run_gid, run_egid;
@@ -69,8 +69,8 @@
}
}
-void execute_program(struct process *sp, char **argv)
-{
+void
+execute_program(struct process *sp, char **argv) {
pid_t pid;
debug(1, "Executing `%s'...", sp->filename);