diff options
author | bcook <> | 2016-05-03 13:41:52 +0000 |
---|---|---|
committer | bcook <> | 2016-05-03 13:41:52 +0000 |
commit | 9483b65e2d98e6435b34c6218358a4104a1b1d2f (patch) | |
tree | f63217746e8230663c46a7da4e5d4617958baed7 | |
parent | cba8957e64e49a549128204d20f99c3bcf082a41 (diff) | |
download | openbsd-9483b65e2d98e6435b34c6218358a4104a1b1d2f.tar.gz openbsd-9483b65e2d98e6435b34c6218358a4104a1b1d2f.tar.bz2 openbsd-9483b65e2d98e6435b34c6218358a4104a1b1d2f.zip |
prefer limits.h over sys/limits.hlibressl-v2.3.4
-rw-r--r-- | src/lib/libssl/src/crypto/evp/encode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libssl/src/crypto/evp/encode.c b/src/lib/libssl/src/crypto/evp/encode.c index c060d2d5e5..a8f1ae5a99 100644 --- a/src/lib/libssl/src/crypto/evp/encode.c +++ b/src/lib/libssl/src/crypto/evp/encode.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: encode.c,v 1.20.2.1 2016/05/03 12:39:48 tedu Exp $ */ | 1 | /* $OpenBSD: encode.c,v 1.20.2.2 2016/05/03 13:41:51 bcook Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -56,7 +56,7 @@ | |||
56 | * [including the GNU Public Licence.] | 56 | * [including the GNU Public Licence.] |
57 | */ | 57 | */ |
58 | 58 | ||
59 | #include <sys/limits.h> | 59 | #include <limits.h> |
60 | #include <stdio.h> | 60 | #include <stdio.h> |
61 | #include <string.h> | 61 | #include <string.h> |
62 | 62 | ||