blob: 0f7f6dc93d2f01c435e2ce4962101011d1e1be6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* $OpenBSD: bugio.h,v 1.12 2002/03/05 22:11:40 miod Exp $ */
#ifndef __MACHINE_BUGIO_H__
#define __MACHINE_BUGIO_H__
#include <sys/cdefs.h>
#include <machine/prom.h>
void buginit __P((void));
int buginstat __P((void));
char buginchr __P((void));
void bugoutchr __P((unsigned char));
void bugoutstr __P((char *, char *));
void bugrtcrd __P((struct mvmeprom_time *));
void bugreturn __P((void));
void bugbrdid __P((struct mvmeprom_brdid *));
#endif /* __MACHINE_BUGIO_H__ */
|