summaryrefslogtreecommitdiff
path: root/kern/bootstrap.c
diff options
context:
space:
mode:
authorMarin Ramesa <mpr@hi.t-com.hr>2013-12-19 20:43:54 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2013-12-20 00:26:27 +0100
commit549984f6b3b5ec146edcb03d86e637eff9956bd2 (patch)
tree5c082377d5f22bafbaae71408062ba2aaef18c5d /kern/bootstrap.c
parentf533e173fccb40aac5c3e7f4f2277f3cdec5d029 (diff)
Declare void argument lists (part 2)
Declare void argument lists that were not declared in the first part of this patch and * kern/sched_prim.h (recompute_priorities): Fix prototype. * kern/startup.c (setup_main) (recompute_priorities): Fix call.
Diffstat (limited to 'kern/bootstrap.c')
-rw-r--r--kern/bootstrap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/kern/bootstrap.c b/kern/bootstrap.c
index 86e238a..3e24d7b 100644
--- a/kern/bootstrap.c
+++ b/kern/bootstrap.c
@@ -82,8 +82,8 @@ static mach_port_t boot_host_port; /* local name */
extern char *kernel_cmdline;
-static void user_bootstrap(); /* forward */
-static void user_bootstrap_compat(); /* forward */
+static void user_bootstrap(void); /* forward */
+static void user_bootstrap_compat(void); /* forward */
static void bootstrap_exec_compat(void *exec_data); /* forward */
static void get_compat_strings(char *flags_str, char *root_str); /* forward */