mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-11 16:15:07 -04:00
11 lines
169 B
C
11 lines
169 B
C
#ifndef BOOT_H_
|
|
#define BOOT_H_
|
|
|
|
#include <sys/types.h>
|
|
|
|
typedef void (*boot_entry_t)(int, int, int (*)(void *), void *, u_int);
|
|
|
|
void main(void);
|
|
|
|
#endif /* BOOT_H_ */
|