summaryrefslogtreecommitdiff
path: root/kern/timer.h
diff options
context:
space:
mode:
authorMarin Ramesa <mpr@hi.t-com.hr>2013-11-23 15:29:28 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2013-11-24 22:54:36 +0100
commit16e5483d9e23593cb1e7f348301a63c6cdfdfe86 (patch)
treecfb8876a4cb60ae388318f985a509bd56c795aea /kern/timer.h
parent8a0a0b374ce862fb784b5b56c2b9f8f4006242fd (diff)
kern: move forward declaration into a header file
* kern/timer.c (timer_init): Remove forward declaration. * kern/timer.h (timer_init): Add prototype.
Diffstat (limited to 'kern/timer.h')
-rw-r--r--kern/timer.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/kern/timer.h b/kern/timer.h
index f5095b5..76a4117 100644
--- a/kern/timer.h
+++ b/kern/timer.h
@@ -184,4 +184,6 @@ extern void init_timers(void);
void softclock(void);
+void timer_init(timer_t this_timer);
+
#endif /* _KERN_TIMER_H_ */