No empty .Rs/.Re
[netbsd-mini2440.git] / sys / arch / macppc / stand / ofwboot / boot.h
blob2a5e0108e6a7a547f0f9598a12671aad6f0bee7c
1 #ifndef BOOT_H_
2 #define BOOT_H_
4 #include <sys/types.h>
6 typedef void (*boot_entry_t)(int, int, int (*)(void *), void *, u_int);
8 void main(void);
10 #define MAXBOOTPATHLEN 256
11 extern char bootdev[MAXBOOTPATHLEN];
12 extern bool floppyboot;
14 #ifdef HAVE_CHANGEDISK_HOOK
15 struct open_file;
17 void changedisk_hook(struct open_file *of);
18 #endif
20 void freeall(void);
22 #endif /* BOOT_H_ */