1/*	$NetBSD: libsa.h,v 1.5 2008/01/12 09:54:32 tsutsui Exp $	*/
2
3/*
4 * libsa prototypes
5 */
6
7#include "libbug.h"
8
9/* bugdev.c */
10int bugscopen(struct open_file *, ...);
11int bugscclose(struct open_file *);
12int bugscioctl(struct open_file *, u_long, void *);
13int bugscstrategy(void *, int, daddr_t, size_t, void *, size_t *);
14
15/* clock.c */
16u_long chiptotime(int, int, int, int, int, int);
17
18/* exec_mvme.c */
19void exec_mvme(char *, int, int);
20
21/* parse_args.c */
22void parse_args(char **, int *, int *);
23
24