summaryrefslogtreecommitdiff
path: root/src/lib/libc
diff options
context:
space:
mode:
authorderaadt <>2014-07-17 23:48:24 +0000
committerderaadt <>2014-07-17 23:48:24 +0000
commitbc38918ebd1fef9905f54dfd5b03454cd1e099f3 (patch)
tree0e71ac600a91c608e94308ae38b9712bf6d7bc78 /src/lib/libc
parentf3aa5f8ae4b41eff724cd3762f9b8cd0c8bf5b72 (diff)
downloadopenbsd-bc38918ebd1fef9905f54dfd5b03454cd1e099f3.tar.gz
openbsd-bc38918ebd1fef9905f54dfd5b03454cd1e099f3.tar.bz2
openbsd-bc38918ebd1fef9905f54dfd5b03454cd1e099f3.zip
avoid sys/param.h; Jonas Termansen
Diffstat (limited to '')
-rw-r--r--src/lib/libcrypto/ppccap.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/lib/libcrypto/ppccap.c b/src/lib/libcrypto/ppccap.c
index 47b613e536..ce01edf6ec 100644
--- a/src/lib/libcrypto/ppccap.c
+++ b/src/lib/libcrypto/ppccap.c
@@ -1,8 +1,9 @@
1/* $OpenBSD: ppccap.c,v 1.5 2014/06/12 15:49:27 deraadt Exp $ */ 1/* $OpenBSD: ppccap.c,v 1.6 2014/07/17 23:48:24 deraadt Exp $ */
2#include <unistd.h> 2
3#include <sys/param.h> 3#include <sys/types.h>
4#include <sys/sysctl.h> 4#include <sys/sysctl.h>
5#include <machine/cpu.h> 5#include <machine/cpu.h>
6#include <unistd.h>
6 7
7#include <crypto.h> 8#include <crypto.h>
8#include <openssl/bn.h> 9#include <openssl/bn.h>