diff options
author | Brent Cook <bcook@cvs.openbsd.org> | 2016-05-03 14:05:42 +0000 |
---|---|---|
committer | Brent Cook <bcook@cvs.openbsd.org> | 2016-05-03 14:05:42 +0000 |
commit | 6ad9ab57cb93f2ba8e6e78d0f0f601ed55dda588 (patch) | |
tree | 8f5fa1ec0de5399af1360ccc9bb01a9f268a7e9d /lib | |
parent | 5909a3aa652f7276383cd69f3123db33e63373bf (diff) |
prefer limits.h over sys/limits.h
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libssl/src/crypto/evp/encode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libssl/src/crypto/evp/encode.c b/lib/libssl/src/crypto/evp/encode.c index 0dd87eb1a90..e4104173d48 100644 --- a/lib/libssl/src/crypto/evp/encode.c +++ b/lib/libssl/src/crypto/evp/encode.c @@ -1,4 +1,4 @@ -/* $OpenBSD: encode.c,v 1.21 2016/05/03 12:38:53 tedu Exp $ */ +/* $OpenBSD: encode.c,v 1.22 2016/05/03 14:05:41 bcook Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -56,7 +56,7 @@ * [including the GNU Public Licence.] */ -#include <sys/limits.h> +#include <limits.h> #include <stdio.h> #include <string.h> |