diff options
author | 2015-02-12 03:09:22 +0000 | |
---|---|---|
committer | 2015-02-12 03:09:22 +0000 | |
commit | 38ec878b25cfa0447f7f8dbf461ee26ea57e643b (patch) | |
tree | aeae6880c9b3b16c28b7707ac17180b34fc001dd | |
parent | Add mutex_is_locked and use it wherever linux uses it. (diff) | |
download | wireguard-openbsd-38ec878b25cfa0447f7f8dbf461ee26ea57e643b.tar.xz wireguard-openbsd-38ec878b25cfa0447f7f8dbf461ee26ea57e643b.zip |
swap limits.h for sys/limits.h
ok jsing@
-rw-r--r-- | usr.bin/openssl/certhash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/openssl/certhash.c b/usr.bin/openssl/certhash.c index 39e8324ea0b..a7a42d7f59c 100644 --- a/usr.bin/openssl/certhash.c +++ b/usr.bin/openssl/certhash.c @@ -16,12 +16,12 @@ #include <sys/param.h> #include <sys/types.h> -#include <sys/limits.h> #include <sys/stat.h> #include <errno.h> #include <dirent.h> #include <fcntl.h> +#include <limits.h> #include <stdio.h> #include <string.h> #include <unistd.h> |