From be78a5c7937a31128a3624dcace9df23492866f9 Mon Sep 17 00:00:00 2001 From: Marin Ramesa Date: Fri, 29 Nov 2013 22:54:20 +0100 Subject: Declare void argument lists --- kern/act.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'kern/act.c') diff --git a/kern/act.c b/kern/act.c index d76fe0ef..c0b6aa8b 100644 --- a/kern/act.c +++ b/kern/act.c @@ -64,7 +64,7 @@ static Act free_acts[ACT_STATIC_KLUDGE]; Act null_act; void -global_act_init() +global_act_init(void) { #ifndef ACT_STATIC_KLUDGE kmem_cache_init(&act_cache, "Act", sizeof(struct Act), 0, @@ -257,7 +257,7 @@ void act_detach(Act *cur_act) so RPC entry paths need not check it. Locking: Act */ -void act_execute_returnhandlers() +void act_execute_returnhandlers(void) { Act *act = current_act(); @@ -1061,7 +1061,7 @@ act_set_state_immediate(act, flavor, new_state, new_state_count) return act_set_state(act, flavor, new_state, new_state_count); } -void act_count() +void act_count(void) { int i; Act *act; -- cgit v1.2.3