Module Name: src
Committed By: riastradh
Date: Wed Feb 17 01:48:36 UTC 2016
Modified Files:
src/sys/rump/librump/rumpkern: hyperentropy.c
Log Message:
Need <sys/mutex.h> for mutex(9).
To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/sys/rump/librump/rumpkern/hyperentropy.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/rump/librump/rumpkern/hyperentropy.c
diff -u src/sys/rump/librump/rumpkern/hyperentropy.c:1.13 src/sys/rump/librump/rumpkern/hyperentropy.c:1.14
--- src/sys/rump/librump/rumpkern/hyperentropy.c:1.13 Wed Feb 17 01:48:04 2016
+++ src/sys/rump/librump/rumpkern/hyperentropy.c Wed Feb 17 01:48:36 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: hyperentropy.c,v 1.13 2016/02/17 01:48:04 riastradh Exp $ */
+/* $NetBSD: hyperentropy.c,v 1.14 2016/02/17 01:48:36 riastradh Exp $ */
/*
* Copyright (c) 2014 Antti Kantee. All Rights Reserved.
@@ -26,10 +26,11 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: hyperentropy.c,v 1.13 2016/02/17 01:48:04 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: hyperentropy.c,v 1.14 2016/02/17 01:48:36 riastradh Exp $");
#include <sys/param.h>
#include <sys/kmem.h>
+#include <sys/mutex.h>
#include <sys/rndpool.h>
#include <sys/rndsource.h>