diff options
author | Brent Cook <bcook@cvs.openbsd.org> | 2015-10-06 12:54:25 +0000 |
---|---|---|
committer | Brent Cook <bcook@cvs.openbsd.org> | 2015-10-06 12:54:25 +0000 |
commit | eb196fa4fb6bf26ccab075c6a68f50d5d2b469ad (patch) | |
tree | c818bb558b42778e50b1f46cafbb8415a79810ee /lib/libcrypto/asn1 | |
parent | 4a7d4d024029a68b3d29493e6e2fd79742408ab7 (diff) |
prefer limits.h over sys/limits.h
ok deraadt@
Diffstat (limited to 'lib/libcrypto/asn1')
-rw-r--r-- | lib/libcrypto/asn1/a_time_tm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libcrypto/asn1/a_time_tm.c b/lib/libcrypto/asn1/a_time_tm.c index 81a92ad6d80..ba751736536 100644 --- a/lib/libcrypto/asn1/a_time_tm.c +++ b/lib/libcrypto/asn1/a_time_tm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: a_time_tm.c,v 1.3 2015/10/05 06:13:58 jsing Exp $ */ +/* $OpenBSD: a_time_tm.c,v 1.4 2015/10/06 12:54:24 bcook Exp $ */ /* * Copyright (c) 2015 Bob Beck <beck@openbsd.org> * @@ -15,11 +15,11 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ +#include <ctype.h> +#include <limits.h> #include <stdio.h> #include <string.h> #include <time.h> -#include <ctype.h> -#include <sys/limits.h> #include <openssl/asn1t.h> #include <openssl/err.h> |