mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-12 08:36:05 -04:00
14 lines
234 B
C
14 lines
234 B
C
struct romdev {
|
|
int fd;
|
|
int devtype;
|
|
char devname[32];
|
|
};
|
|
|
|
#define DT_BLOCK 1
|
|
#define DT_NET 2
|
|
|
|
int net_open(struct romdev *);
|
|
int net_close(struct romdev *);
|
|
int net_mountroot(void);
|
|
int prom_getether(struct romdev *, u_char *);
|