If _STANDALONE is defined, #include </lib/libsa/iodesc.h> instead of requiring

that the source that #includes net.h have lib/libsa in its include path.
In the non-_STANDALONE case make it easy for the user to supply their own iodesc.h.
This commit is contained in:
dsl 2006-01-22 16:05:42 +00:00
parent 2309deb39e
commit 9813905f44
1 changed files with 5 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: net.h,v 1.17 2006/01/21 10:06:06 dsl Exp $ */
/* $NetBSD: net.h,v 1.18 2006/01/22 16:05:42 dsl Exp $ */
/*
* Copyright (c) 1993 Adam Glass
@ -43,7 +43,11 @@
#define __IPADDR(x) htonl((u_int32_t)(x))
#endif
#ifdef _STANDALONE
#include <lib/libsa/iodesc.h>
#else
#include <iodesc.h>
#endif
#define BA { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }