diff options
author | Brent Cook <bcook@openbsd.org> | 2016-05-03 02:13:52 -0500 |
---|---|---|
committer | Brent Cook <bcook@openbsd.org> | 2016-05-03 02:38:40 -0500 |
commit | bb9c1f2838b92b51bec5140393e790d4e960fd8a (patch) | |
tree | 26334da09385e8f8b868b97a78a8b437e380dce0 | |
parent | 2169962cb45c6b7bc3336d771872e9cfb12ce714 (diff) | |
download | portable-bb9c1f2838b92b51bec5140393e790d4e960fd8a.tar.gz portable-bb9c1f2838b92b51bec5140393e790d4e960fd8a.tar.bz2 portable-bb9c1f2838b92b51bec5140393e790d4e960fd8a.zip |
prefer limits.h over sys/limits.h
-rw-r--r-- | patches/encode.c.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/patches/encode.c.patch b/patches/encode.c.patch new file mode 100644 index 0000000..f78cc2c --- /dev/null +++ b/patches/encode.c.patch | |||
@@ -0,0 +1,11 @@ | |||
1 | --- crypto/evp/encode.c.orig Tue May 3 02:11:54 2016 | ||
2 | +++ crypto/evp/encode.c Tue May 3 02:12:00 2016 | ||
3 | @@ -56,7 +56,7 @@ | ||
4 | * [including the GNU Public Licence.] | ||
5 | */ | ||
6 | |||
7 | -#include <sys/limits.h> | ||
8 | +#include <limits.h> | ||
9 | #include <stdio.h> | ||
10 | #include <string.h> | ||
11 | |||