Home | History | Annotate | Line # | Download | only in tapeboot
      1 /*	$NetBSD: dev_tape.h,v 1.3 2005/12/11 12:19:29 christos Exp $	*/
      2 
      3 
      4 int	tape_open(struct open_file *, ...);
      5 int	tape_close(struct open_file *);
      6 int	tape_strategy(void *, int, daddr_t, size_t, void *, size_t *);
      7 int	tape_ioctl(struct open_file *, u_long, void *);
      8 
      9