diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2019-03-26 09:15:08 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2019-03-26 09:15:08 +0000 |
commit | a60cb0d5dc175fc04e5e82d47d81cfbcdedb8335 (patch) | |
tree | 1be18ee3bdabb209000017810122decf5f3fa77f /lib/libcrypto | |
parent | ec112173c23537b9d97fb4380f863ed6770781c7 (diff) |
Use limits.h instead of sys/limits.h for portability.
From phrocker via github.
Diffstat (limited to 'lib/libcrypto')
-rw-r--r-- | lib/libcrypto/asn1/a_int.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/libcrypto/asn1/a_int.c b/lib/libcrypto/asn1/a_int.c index 218d0b607bb..1b2ebfb3a95 100644 --- a/lib/libcrypto/asn1/a_int.c +++ b/lib/libcrypto/asn1/a_int.c @@ -1,4 +1,4 @@ -/* $OpenBSD: a_int.c,v 1.32 2019/03/23 18:48:14 beck Exp $ */ +/* $OpenBSD: a_int.c,v 1.33 2019/03/26 09:15:07 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -56,11 +56,10 @@ * [including the GNU Public Licence.] */ +#include <limits.h> #include <stdio.h> #include <string.h> -#include <sys/limits.h> - #include <openssl/asn1.h> #include <openssl/bn.h> #include <openssl/err.h> |