Add some PROM function prototypes
Add bootprog* variable declarations (ala alpha/stand/common.h).
This commit is contained in:
parent
4bb143c0ea
commit
55ae392784
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: common.h,v 1.2 1999/11/27 03:08:02 simonb Exp $ */
|
||||
/* $NetBSD: common.h,v 1.3 1999/11/27 06:45:07 simonb Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1999 The NetBSD Foundation, Inc.
|
||||
|
@ -42,7 +42,17 @@ void startprog __P((int, int, int, char **, int, const void *, int, int));
|
|||
/* PROM callbacks */
|
||||
int bootinit __P((const char *));
|
||||
int bootread __P((int, void *, int));
|
||||
int bootwrite __P((int, void *, int));
|
||||
char *getenv __P((const char *));
|
||||
int prom_close __P((int));
|
||||
int prom_lseek __P((int, int, int));
|
||||
int prom_open __P((const char *, int));
|
||||
int prom_read __P((int, void *, int));
|
||||
|
||||
|
||||
/*
|
||||
* vers.c (generated by newvers.sh)
|
||||
*/
|
||||
extern const char bootprog_rev[];
|
||||
extern const char bootprog_date[];
|
||||
extern const char bootprog_maker[];
|
||||
|
|
Loading…
Reference in New Issue