mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-12 08:36:05 -04:00
24 lines
502 B
C
24 lines
502 B
C
/* $NetBSD: libsa.h,v 1.6 2009/01/12 11:32:44 tsutsui 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 *);
|
|
|
|
/* clock.c */
|
|
u_long chiptotime(int, int, int, int, int, int);
|
|
|
|
/* exec_mvme.c */
|
|
void exec_mvme(char *, int, int);
|
|
|
|
/* parse_args.c */
|
|
void parse_args(char **, int *, int *);
|
|
|