diff options
author | Kinichiro Inoguchi <inoguchi@cvs.openbsd.org> | 2021-05-03 23:44:06 +0000 |
---|---|---|
committer | Kinichiro Inoguchi <inoguchi@cvs.openbsd.org> | 2021-05-03 23:44:06 +0000 |
commit | 7e18c499fb6a85010cf718ce781dce0736aabd82 (patch) | |
tree | 20c2f5f3a747cda0191c7cb8fa9e02c6f58eba8c | |
parent | f8e75285ebbea520930de1e0250cb74bcd4cbea3 (diff) |
Use limits.h instead of sys/limits.h in dtlstest.c for portable
discussed and input from jsing@
-rw-r--r-- | regress/lib/libssl/dtls/dtlstest.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/lib/libssl/dtls/dtlstest.c b/regress/lib/libssl/dtls/dtlstest.c index 7292ea1cf69..cf3bd76c931 100644 --- a/regress/lib/libssl/dtls/dtlstest.c +++ b/regress/lib/libssl/dtls/dtlstest.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dtlstest.c,v 1.7 2021/02/07 14:52:17 jsing Exp $ */ +/* $OpenBSD: dtlstest.c,v 1.8 2021/05/03 23:44:05 inoguchi Exp $ */ /* * Copyright (c) 2020 Joel Sing <jsing@openbsd.org> * @@ -16,10 +16,10 @@ */ #include <netinet/in.h> -#include <sys/limits.h> #include <sys/socket.h> #include <err.h> +#include <limits.h> #include <poll.h> #include <unistd.h> |