diff options
author | Steve Murphree <smurph@cvs.openbsd.org> | 1998-08-22 08:08:29 +0000 |
---|---|---|
committer | Steve Murphree <smurph@cvs.openbsd.org> | 1998-08-22 08:08:29 +0000 |
commit | 87c23604fb0b6fa5748345906074855d5a034bb6 (patch) | |
tree | 44f9ada4f85b68e43a4d4ce670e43cb994ccbcc4 /sys/arch/mvme88k/stand/libsa/libsa.h | |
parent | 1f67073b7df408627e13f1256030ac64be67f76a (diff) |
New libsa.
Diffstat (limited to 'sys/arch/mvme88k/stand/libsa/libsa.h')
-rw-r--r-- | sys/arch/mvme88k/stand/libsa/libsa.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/sys/arch/mvme88k/stand/libsa/libsa.h b/sys/arch/mvme88k/stand/libsa/libsa.h new file mode 100644 index 00000000000..eff5fd7988e --- /dev/null +++ b/sys/arch/mvme88k/stand/libsa/libsa.h @@ -0,0 +1,18 @@ +/* + * libsa prototypes + */ + +#include "libbug.h" + +/* bugdev.c */ +int bugscopen __P((struct open_file *, ...)); +int bugscclose __P((struct open_file *)); +int bugscioctl __P((struct open_file *, u_long, void *)); +int bugscstrategy __P((void *, int, daddr_t, size_t, void *, size_t *)); + +/* exec_mvme.c */ +void exec_mvme __P((char *, int)); + +/* parse_args.c */ +int parse_args __P((char **, int *)); + |