diff options
| author | Mark Murray <markm@FreeBSD.org> | 2001-05-01 08:13:21 +0000 |
|---|---|---|
| committer | Mark Murray <markm@FreeBSD.org> | 2001-05-01 08:13:21 +0000 |
| commit | fb919e4d5a2c1baca52ac70d1064f140fffdda71 (patch) | |
| tree | 62c0461c4eb61081648eebf963146193ebdc7398 /sys/dev/random/randomdev.c | |
| parent | 8904de15a20f7c5372ec763d2b637b0997485466 (diff) | |
Notes
Diffstat (limited to 'sys/dev/random/randomdev.c')
| -rw-r--r-- | sys/dev/random/randomdev.c | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/sys/dev/random/randomdev.c b/sys/dev/random/randomdev.c index 252662df9cca..a99fe6db12d3 100644 --- a/sys/dev/random/randomdev.c +++ b/sys/dev/random/randomdev.c @@ -27,23 +27,25 @@ */ #include <sys/param.h> -#include <sys/queue.h> #include <sys/systm.h> +#include <sys/bus.h> #include <sys/conf.h> -#include <sys/filio.h> #include <sys/fcntl.h> -#include <sys/uio.h> +#include <sys/filio.h> #include <sys/kernel.h> #include <sys/kthread.h> +#include <sys/lock.h> #include <sys/malloc.h> #include <sys/module.h> -#include <sys/bus.h> +#include <sys/mutex.h> #include <sys/poll.h> -#include <sys/selinfo.h> +#include <sys/queue.h> #include <sys/random.h> +#include <sys/selinfo.h> #include <sys/sysctl.h> -#include <sys/vnode.h> +#include <sys/uio.h> #include <sys/unistd.h> +#include <sys/vnode.h> #include <machine/bus.h> #include <machine/cpu.h> |
