Re-indent entry points to functions
diff --git a/wait_for_something.c b/wait_for_something.c
index 9440652..0f57fe5 100644
--- a/wait_for_something.c
+++ b/wait_for_something.c
@@ -20,8 +20,8 @@
static struct process *pid2proc(int pid);
-struct event *wait_for_something(void)
-{
+struct event *
+wait_for_something(void) {
pid_t pid;
int status;
int tmp;
@@ -155,8 +155,8 @@
return &event;
}
-static struct process *pid2proc(pid_t pid)
-{
+static struct process *
+pid2proc(pid_t pid) {
struct process *tmp;
tmp = list_of_processes;