#include <lib/libsa/stand.h>
#include <lib/libkern/libkern.h>
#include <dev/cons.h>
#define EXEC_ELF
#define EXEC_SOM
#define NENTS(a) (sizeof(a) / sizeof(a[0]))
typedef unsigned int btdev_t;
extern btdev_t bootdev;
extern struct consdev constab[];
extern struct consdev *cn_tab;
int cngetc(void);
int tcngetc(void);
void cnputc(int);
void cninit(void);
int tgetchar(void);
void pdc_init(void);
struct pz_device;
struct pz_device *pdc_findev(int, int);
int iodcstrategy(void *, int, daddr_t, size_t, void *, size_t *);
int ctopen(struct open_file *, ...);
int ctclose(struct open_file *);
int dkopen(struct open_file *, ...);
int dkclose(struct open_file *);
int lfopen(struct open_file *, ...);
int lfstrategy(void *, int, daddr_t, size_t, void *, size_t *);
int lfclose(struct open_file *);
void ite_probe(struct consdev *);
void ite_init(struct consdev *);
int ite_getc(dev_t);
void ite_putc(dev_t, int);
void ite_pollc(dev_t, int);
void machdep(void);
void devboot(btdev_t, char *);
void fcacheall(void);
int lif_open(const char *, struct open_file *);
int lif_close(struct open_file *);
int lif_read(struct open_file *, void *, size_t, size_t *);
int lif_write(struct open_file *, void *, size_t, size_t *);
off_t lif_seek(struct open_file *, off_t, int);
int lif_stat(struct open_file *, struct stat *);
int lif_readdir(struct open_file *, char *);
union x_header;
struct x_param;
int som_probe(int, union x_header *);
int som_load(int, struct x_param *);
int som_ldsym(int, struct x_param *);
extern int debug;
extern char bootprog_name[], bootprog_rev[];