diff options
author | Brian Behlendorf <[email protected]> | 2010-06-14 14:18:48 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2010-06-14 14:18:48 -0700 |
commit | def465ad4bfdddaf0e2f776f524fa596defcb4ea (patch) | |
tree | 1a867988bfdaf5269a4f3b11d88b21594e75c9f3 /include | |
parent | eb12b3782c94113d2d40d2da22265dc4111a672b (diff) |
Include kstat.h from kmem.h
It turns out Solaris incidentally includes kstat.h from kmem.h. As
a side effect of this certain higher level .c files which should
explicitly include kstat.h don't because they happen to get it
via kmem.h. To make like easier for everyone I do the same.
Diffstat (limited to 'include')
-rw-r--r-- | include/sys/kmem.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/sys/kmem.h b/include/sys/kmem.h index b6da6d0ac..a5ee4e0df 100644 --- a/include/sys/kmem.h +++ b/include/sys/kmem.h @@ -37,6 +37,7 @@ #include <sys/types.h> #include <sys/debug.h> #include <sys/vmsystm.h> +#include <sys/kstat.h> /* * Memory allocation interfaces |