diff options
author | bcook <> | 2016-05-03 13:57:23 +0000 |
---|---|---|
committer | bcook <> | 2016-05-03 13:57:23 +0000 |
commit | 7c07dde201b57e430af79a8da9a8b4ef6f20f82b (patch) | |
tree | 09bc6860237a25f433db0bdcbce0439d7838d086 | |
parent | 8181baa5419dfe7a69d4ed71a0c5f58e01d1edaa (diff) | |
download | openbsd-7c07dde201b57e430af79a8da9a8b4ef6f20f82b.tar.gz openbsd-7c07dde201b57e430af79a8da9a8b4ef6f20f82b.tar.bz2 openbsd-7c07dde201b57e430af79a8da9a8b4ef6f20f82b.zip |
prefer limits.h over sys/limits.hlibressl-v2.2.7
-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 a2b86e962b..4cf4f5e8be 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.6.1 2016/05/03 12:39:23 tedu Exp $ */ | 1 | /* $OpenBSD: encode.c,v 1.20.6.2 2016/05/03 13:57:22 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 | ||