18 lines
291 B
C
18 lines
291 B
C
/* $NetBSD: altqconf.h,v 1.2 2001/05/30 11:57:16 mrg Exp $ */
|
|
|
|
#if defined(_KERNEL_OPT)
|
|
#include "opt_altq_enabled.h"
|
|
|
|
#include <sys/conf.h>
|
|
|
|
#ifdef ALTQ
|
|
#define NALTQ 1
|
|
#else
|
|
#define NALTQ 0
|
|
#endif
|
|
|
|
cdev_decl(altq);
|
|
|
|
#define cdev_altq_init(x,y) cdev__oci_init(x,y)
|
|
#endif /* _KERNEL_OPT */
|