Module Name: src
Committed By: riastradh
Date: Mon Aug 11 03:46:54 UTC 2014
Modified Files:
src/sys/crypto/cprng_fast: cprng_fast.c
Log Message:
Sort #includes.
To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sys/crypto/cprng_fast/cprng_fast.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/crypto/cprng_fast/cprng_fast.c
diff -u src/sys/crypto/cprng_fast/cprng_fast.c:1.3 src/sys/crypto/cprng_fast/cprng_fast.c:1.4
--- src/sys/crypto/cprng_fast/cprng_fast.c:1.3 Sun Aug 10 22:35:32 2014
+++ src/sys/crypto/cprng_fast/cprng_fast.c Mon Aug 11 03:46:54 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: cprng_fast.c,v 1.3 2014/08/10 22:35:32 justin Exp $ */
+/* $NetBSD: cprng_fast.c,v 1.4 2014/08/11 03:46:54 riastradh Exp $ */
/*-
* Copyright (c) 2014 The NetBSD Foundation, Inc.
@@ -30,16 +30,15 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cprng_fast.c,v 1.3 2014/08/10 22:35:32 justin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cprng_fast.c,v 1.4 2014/08/11 03:46:54 riastradh Exp $");
#include <sys/types.h>
-#include <sys/bitops.h>
#include <sys/param.h>
+#include <sys/bitops.h>
+#include <sys/cprng.h>
#include <sys/cpu.h>
#include <sys/intr.h>
#include <sys/percpu.h>
-#include <sys/cprng.h>
-
/* ChaCha core */