xref: /netbsd-src/sys/arch/ofppc/stand/ofwboot/boot.h (revision db875b067a98ee7be8e7db8b0e6a94d66e065c48)
1 #ifndef BOOT_H_
2 #define BOOT_H_
3 
4 #include <sys/types.h>
5 
6 typedef void (*boot_entry_t)(int, int, int (*)(void *), void *, u_int);
7 
8 void main(void);
9 
10 #endif /* BOOT_H_ */
11