diff options
author | Marin Ramesa <mpr@hi.t-com.hr> | 2013-11-29 22:54:00 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-12-05 06:35:45 +0900 |
commit | 016dba1c5e3aa0bfa24595978b296768844193bb (patch) | |
tree | 1b97ae90bc3dc38880df529693f909e4ca0aae88 /kern | |
parent | 072c63671c42b8ebcc3561b003bc087676be97fb (diff) |
kern/debug.c: remove forward declaration
* kern/debug.c (cnputc): Remove forward declaration.
Include device/cons.h.
Diffstat (limited to 'kern')
-rw-r--r-- | kern/debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kern/debug.c b/kern/debug.c index 33e64f3..e9427a3 100644 --- a/kern/debug.c +++ b/kern/debug.c @@ -38,7 +38,7 @@ #include <machine/loose_ends.h> #include <machine/model_dep.h> -extern void cnputc(); +#include <device/cons.h> #if MACH_KDB extern int db_breakpoints_inserted; |