60ed1ea4ce
Propagate "static" to function definitions. Drop trailing whitespace. Same binary code is produced for GENERIC.MP + KGDB + DDB.
18 lines
419 B
C
18 lines
419 B
C
/* $NetBSD: cons.h,v 1.5 2005/11/16 00:49:03 uwe Exp $ */
|
|
|
|
|
|
/*
|
|
* PROM I/O nodes and arguments are prepared by consinit().
|
|
* Drivers can examine these when looking for a console device match.
|
|
*/
|
|
extern int prom_stdin_node;
|
|
extern int prom_stdout_node;
|
|
extern char prom_stdin_args[];
|
|
extern char prom_stdout_args[];
|
|
|
|
#ifdef KGDB
|
|
struct zs_chanstate;
|
|
void zs_kgdb_init(void);
|
|
void zskgdb(struct zs_chanstate *);
|
|
#endif
|