diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2014-07-17 23:48:25 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2014-07-17 23:48:25 +0000 |
commit | f6ee4486c79f84989a439082b1853506bc2cac6a (patch) | |
tree | ad03ebde1f67ec31e76408246a28e009badfa7ad /lib | |
parent | e3e55c80105ba83ae5311cebee969f0512e9a442 (diff) |
avoid sys/param.h; Jonas Termansen
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libssl/src/crypto/ppccap.c | 7 | ||||
-rw-r--r-- | lib/libssl/src/ssl/d1_lib.c | 4 |
2 files changed, 6 insertions, 5 deletions
diff --git a/lib/libssl/src/crypto/ppccap.c b/lib/libssl/src/crypto/ppccap.c index 47b613e5367..ce01edf6ecf 100644 --- a/lib/libssl/src/crypto/ppccap.c +++ b/lib/libssl/src/crypto/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> diff --git a/lib/libssl/src/ssl/d1_lib.c b/lib/libssl/src/ssl/d1_lib.c index 0539ad42875..ff78d0cf3ae 100644 --- a/lib/libssl/src/ssl/d1_lib.c +++ b/lib/libssl/src/ssl/d1_lib.c @@ -1,4 +1,4 @@ -/* $OpenBSD: d1_lib.c,v 1.23 2014/07/11 13:09:04 miod Exp $ */ +/* $OpenBSD: d1_lib.c,v 1.24 2014/07/17 23:48:24 deraadt Exp $ */ /* * DTLS implementation written by Nagendra Modadugu * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. @@ -57,7 +57,7 @@ * */ -#include <sys/param.h> +#include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> |