diff options
author | inoguchi <> | 2021-05-03 23:44:05 +0000 |
---|---|---|
committer | inoguchi <> | 2021-05-03 23:44:05 +0000 |
commit | 76ac52a89efdc9edb22566dc5518cb173d98f33f (patch) | |
tree | e05a42c5e230d00ac87506d5bdcd7a35644a7fc7 /src | |
parent | c49b8b934d8358a98c780d1f80aa9de720b7827e (diff) | |
download | openbsd-76ac52a89efdc9edb22566dc5518cb173d98f33f.tar.gz openbsd-76ac52a89efdc9edb22566dc5518cb173d98f33f.tar.bz2 openbsd-76ac52a89efdc9edb22566dc5518cb173d98f33f.zip |
Use limits.h instead of sys/limits.h in dtlstest.c for portable
discussed and input from jsing@
Diffstat (limited to 'src')
-rw-r--r-- | src/regress/lib/libssl/dtls/dtlstest.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/regress/lib/libssl/dtls/dtlstest.c b/src/regress/lib/libssl/dtls/dtlstest.c index 7292ea1cf6..cf3bd76c93 100644 --- a/src/regress/lib/libssl/dtls/dtlstest.c +++ b/src/regress/lib/libssl/dtls/dtlstest.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: dtlstest.c,v 1.7 2021/02/07 14:52:17 jsing Exp $ */ | 1 | /* $OpenBSD: dtlstest.c,v 1.8 2021/05/03 23:44:05 inoguchi Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2020 Joel Sing <jsing@openbsd.org> | 3 | * Copyright (c) 2020 Joel Sing <jsing@openbsd.org> |
4 | * | 4 | * |
@@ -16,10 +16,10 @@ | |||
16 | */ | 16 | */ |
17 | 17 | ||
18 | #include <netinet/in.h> | 18 | #include <netinet/in.h> |
19 | #include <sys/limits.h> | ||
20 | #include <sys/socket.h> | 19 | #include <sys/socket.h> |
21 | 20 | ||
22 | #include <err.h> | 21 | #include <err.h> |
22 | #include <limits.h> | ||
23 | #include <poll.h> | 23 | #include <poll.h> |
24 | #include <unistd.h> | 24 | #include <unistd.h> |
25 | 25 | ||