blob: f8319f2ebd771c24581b0dd6944ec73813e77afe (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* $NetBSD: dev_net.h,v 1.5 2007/10/27 12:21:17 tsutsui Exp $ */
int net_open __P((struct open_file *, ...));
int net_close __P((struct open_file *));
int net_ioctl __P((struct open_file *, u_long, void *));
int net_strategy __P((void *, int , daddr_t , size_t, void *, size_t *));
#ifdef SUPPORT_BOOTP
extern int try_bootp;
#endif
|