diff options
| author | Maxim Konovalov <maxim@FreeBSD.org> | 2005-11-13 16:37:57 +0000 |
|---|---|---|
| committer | Maxim Konovalov <maxim@FreeBSD.org> | 2005-11-13 16:37:57 +0000 |
| commit | b92c986d0180036946bc64a8750a7c0687cfdeae (patch) | |
| tree | c995369cae092b6e5bda5dc7f15dd23600d18c7b /tools | |
| parent | fafc440b5288b88326074fd8d1bca5d512d28ab7 (diff) | |
Notes
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/tools/aac/aac_checkq.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/tools/tools/aac/aac_checkq.c b/tools/tools/aac/aac_checkq.c index 9fb79be0f54b..5893e6537423 100644 --- a/tools/tools/aac/aac_checkq.c +++ b/tools/tools/aac/aac_checkq.c @@ -23,18 +23,20 @@ * SUCH DAMAGE. */ -#include <stdio.h> -#include <errno.h> +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + #include <sys/types.h> #include <sys/fcntl.h> #include <sys/ioctl.h> -#include "/sys/dev/aac/aac_ioctl.h" +#include <sys/aac_ioctl.h> -__FBSDID("$FreeBSD$"); +#include <errno.h> +#include <stdio.h> /* * Simple program to print out the queue stats on the given queue index. - * See /sys/dev/aac/aac_ioctl.h for the definitions of each queue index. + * See /sys/sys/aac_ioctl.h for the definitions of each queue index. */ void |
