blob: 62a71ed3c2d6c05269c926ed6b796ea30ec48a41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* $OpenBSD: libsa.h,v 1.3 2002/03/14 01:26:40 millert Exp $ */
/*
* libsa prototypes
*/
#include "libbug.h"
/* bugdev.c */
int bugscopen(struct open_file *, ...);
int bugscclose(struct open_file *);
int bugscioctl(struct open_file *, u_long, void *);
int bugscstrategy(void *, int, daddr_t, size_t, void *, size_t *);
/* exec_mvme.c */
void exec_mvme(char *, int);
/* parse_args.c */
int parse_args(char **, int *);
|