Home | History | Annotate | Line # | Download | only in altq
altqconf.h revision 1.1
      1 /*	$NetBSD: altqconf.h,v 1.1 2000/12/14 23:50:43 thorpej Exp $	*/
      2 
      3 #if defined(_KERNEL) && !defined(_LKM)
      4 #include "opt_altq_enabled.h"
      5 
      6 #include <sys/conf.h>
      7 
      8 #ifdef ALTQ
      9 #define	NALTQ	1
     10 #else
     11 #define	NALTQ	0
     12 #endif
     13 
     14 cdev_decl(altq);
     15 
     16 #define	cdev_altq_init(x,y)	cdev__oci_init(x,y)
     17 #endif /* _KERNEL && ! _LKM */
     18