Module Name: src
Committed By: justin
Date: Fri Aug 15 17:45:00 UTC 2014
Modified Files:
src/sys/rump/librump/rumpkern: hyperentropy.c
Log Message:
add sys/atomic.h and order headers correctly
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 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.4 src/sys/rump/librump/rumpkern/hyperentropy.c:1.5
--- src/sys/rump/librump/rumpkern/hyperentropy.c:1.4 Fri Aug 15 15:04:33 2014
+++ src/sys/rump/librump/rumpkern/hyperentropy.c Fri Aug 15 17:45:00 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: hyperentropy.c,v 1.4 2014/08/15 15:04:33 riastradh Exp $ */
+/* $NetBSD: hyperentropy.c,v 1.5 2014/08/15 17:45:00 justin Exp $ */
/*
* Copyright (c) 2014 Antti Kantee. All Rights Reserved.
@@ -25,11 +25,12 @@
* SUCH DAMAGE.
*/
-#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: hyperentropy.c,v 1.4 2014/08/15 15:04:33 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: hyperentropy.c,v 1.5 2014/08/15 17:45:00 justin Exp $");
-#include <sys/param.h>
+#include <sys/atomic.h>
+#include <sys/cdefs.h>
#include <sys/kmem.h>
+#include <sys/param.h>
#include <sys/rnd.h>
#include <rump/rumpuser.h>