diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2002-10-16 15:14:31 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2002-10-16 15:14:31 +0000 |
| commit | 18d9bd8f65d6d19fd49b0b4a043f38a29baad3bf (patch) | |
| tree | 6bd4da54db53190fbdb59df16e4efe38ec837cc4 | |
| parent | 32a8cd6cdd59dcb435ebb7b7c30129edcb791285 (diff) | |
Notes
| -rw-r--r-- | sys/kern/kern_descrip.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/kern_descrip.c b/sys/kern/kern_descrip.c index 774bbf88cac0..4a0be5137a6a 100644 --- a/sys/kern/kern_descrip.c +++ b/sys/kern/kern_descrip.c @@ -43,14 +43,14 @@ #include <sys/param.h> #include <sys/systm.h> -#include <sys/lock.h> -#include <sys/malloc.h> -#include <sys/mutex.h> #include <sys/syscallsubr.h> #include <sys/sysproto.h> #include <sys/conf.h> #include <sys/filedesc.h> +#include <sys/lock.h> #include <sys/kernel.h> +#include <sys/malloc.h> +#include <sys/mutex.h> #include <sys/sysctl.h> #include <sys/vnode.h> #include <sys/mount.h> |
