summaryrefslogtreecommitdiffstats
path: root/lib/libcrypto/ppccap.c
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2014-07-17 23:48:24 +0000
committerderaadt <deraadt@openbsd.org>2014-07-17 23:48:24 +0000
commitc6f33ed06a6eb9d6cc1eeaa6677129408e1275ac (patch)
tree9eebdce0dc147ff2187e07940d521cffbdcd3056 /lib/libcrypto/ppccap.c
parentit is 2014, and we still need to encourage people away from srand() (diff)
downloadwireguard-openbsd-c6f33ed06a6eb9d6cc1eeaa6677129408e1275ac.tar.xz
wireguard-openbsd-c6f33ed06a6eb9d6cc1eeaa6677129408e1275ac.zip
avoid sys/param.h; Jonas Termansen
Diffstat (limited to 'lib/libcrypto/ppccap.c')
-rw-r--r--lib/libcrypto/ppccap.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/libcrypto/ppccap.c b/lib/libcrypto/ppccap.c
index 47b613e5367..ce01edf6ecf 100644
--- a/lib/libcrypto/ppccap.c
+++ b/lib/libcrypto/ppccap.c
@@ -1,8 +1,9 @@
-/* $OpenBSD: ppccap.c,v 1.5 2014/06/12 15:49:27 deraadt Exp $ */
-#include <unistd.h>
-#include <sys/param.h>
+/* $OpenBSD: ppccap.c,v 1.6 2014/07/17 23:48:24 deraadt Exp $ */
+
+#include <sys/types.h>
#include <sys/sysctl.h>
#include <machine/cpu.h>
+#include <unistd.h>
#include <crypto.h>
#include <openssl/bn.h>