diff options
author | Damien Miller <djm@mindrot.org> | 2006-09-01 07:48:19 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2006-09-01 07:48:19 +0200 |
commit | 607aede26c4193bf1bc5063698ea9a36cbd990e3 (patch) | |
tree | 588f5e70ecf0ee757ef92c83811e42e03beb5156 /openbsd-compat/rresvport.c | |
parent | - (djm) [audit-bsm.c audit.c auth-bsdauth.c auth-chall.c auth-pam.c] (diff) | |
download | openssh-607aede26c4193bf1bc5063698ea9a36cbd990e3.tar.xz openssh-607aede26c4193bf1bc5063698ea9a36cbd990e3.zip |
- (djm) [includes.h monitor.c openbsd-compat/bindresvport.c]
[openbsd-compat/rresvport.c] Some more headers: netinet/in.h
sys/socket.h and unistd.h in various places
Diffstat (limited to 'openbsd-compat/rresvport.c')
-rw-r--r-- | openbsd-compat/rresvport.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/openbsd-compat/rresvport.c b/openbsd-compat/rresvport.c index 15790e852..17e66ca59 100644 --- a/openbsd-compat/rresvport.c +++ b/openbsd-compat/rresvport.c @@ -35,6 +35,11 @@ #ifndef HAVE_RRESVPORT_AF +#include <sys/types.h> +#include <sys/socket.h> + +#include <netinet/in.h> + #include <errno.h> #include <stdlib.h> #include <string.h> |