summaryrefslogtreecommitdiff
path: root/kern/ast.c
diff options
context:
space:
mode:
authorMarin Ramesa <mpr@hi.t-com.hr>2013-11-29 22:54:20 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2013-12-15 19:19:23 +0100
commitbe78a5c7937a31128a3624dcace9df23492866f9 (patch)
tree18fe5f79b66f47aef9658d788fea84ef425d8127 /kern/ast.c
parent6ff7e82fab67f23f0aa4caa18b886ce03c060f4d (diff)
Declare void argument lists
Diffstat (limited to 'kern/ast.c')
-rw-r--r--kern/ast.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/kern/ast.c b/kern/ast.c
index e8e8c1b..4b9d63d 100644
--- a/kern/ast.c
+++ b/kern/ast.c
@@ -56,7 +56,7 @@
volatile ast_t need_ast[NCPUS];
void
-ast_init()
+ast_init(void)
{
#ifndef MACHINE_AST
int i;
@@ -114,7 +114,7 @@ ast_taken(void)
}
void
-ast_check()
+ast_check(void)
{
int mycpu = cpu_number();
processor_t myprocessor;