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 | 095bdb2c8bd09816bbdacf6d869f7dff78de43fd (patch) | |
tree | 8d700b3e90398f2f8c2189e6d68aa842f62da5e9 /lib/libcrypto | |
parent | 14af59719cb12d847b72422761e623419421474e (diff) |
prefer limits.h over sys/limits.h
Diffstat (limited to 'lib/libcrypto')
-rw-r--r-- | lib/libcrypto/evp/encode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcrypto/evp/encode.c b/lib/libcrypto/evp/encode.c index 0dd87eb1a90..e4104173d48 100644 --- a/lib/libcrypto/evp/encode.c +++ b/lib/libcrypto/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> |