diff options
author | Richard Levitte <levitte@openssl.org> | 2000-09-29 22:14:57 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2000-09-29 22:14:57 +0200 |
commit | a269d312dae19bfc902c3f24d46e76799c3782f4 (patch) | |
tree | c31e088f3e53c3c125590ff1344183757bbbfa5b /e_os.h | |
parent | The des_modes manpage is in section 7. (diff) | |
download | openssl-a269d312dae19bfc902c3f24d46e76799c3782f4.tar.xz openssl-a269d312dae19bfc902c3f24d46e76799c3782f4.zip |
Include arpa/inet.h, since that's where htons() and friends are
supposed to be defined according to XPG4.2.
Found by Evan <n2xjk@ulster.net> for the MVS platform.
Diffstat (limited to 'e_os.h')
-rw-r--r-- | e_os.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -355,12 +355,14 @@ extern HINSTANCE _hInstance; # if defined(VMS) && !defined(__DECC) # include <socket.h> # include <in.h> +# include <inet.h> # else # include <sys/socket.h> # ifdef FILIO_H # include <sys/filio.h> /* Added for FIONBIO under unixware */ # endif # include <netinet/in.h> +# include <arpa/inet.h> # endif # if defined(NeXT) || defined(_NEXT_SOURCE) |