]> sjero.net Git - wget/blob - vms/vms_ip.h
Space before closing brace. Fixes paramcheck.pl output.
[wget] / vms / vms_ip.h
1 /*    VMS-specific "#include" directives for IP. */
2
3 #ifdef MULTINET
4
5 #include "multinet_root:[multinet.include.sys]types.h"
6 #include "multinet_root:[multinet.include]errno.h"
7 #include "multinet_root:[multinet.include]netdb.h"
8
9 #else /* MULTINET */
10
11 #include <sys/types.h>
12 #include <errno.h>
13 #include <netdb.h>
14
15 #if __CRTL_VER < 70000000
16 #define h_errno errno  /* Quiets the compiler, but probably ineffective. */
17 #endif /* __CRTL_VER < 70000000 */
18
19 #endif /* MULTINET */