diff options
author | Lee Clagett <code@leeclagett.com> | 2017-03-18 22:05:14 -0400 |
---|---|---|
committer | Lee Clagett <code@leeclagett.com> | 2017-03-18 22:05:14 -0400 |
commit | 50cd179a609b036127fc0391493be2f893159c94 (patch) | |
tree | 3fbaefca03605b918cc3fb103aeb8eb79b6f939c /contrib/epee/include/md5_l.inl | |
parent | Merge pull request #1887 (diff) | |
download | monero-50cd179a609b036127fc0391493be2f893159c94.tar.xz |
Removed boost/asio.hpp include from epee/string_tools.h
Diffstat (limited to 'contrib/epee/include/md5_l.inl')
-rw-r--r-- | contrib/epee/include/md5_l.inl | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/contrib/epee/include/md5_l.inl b/contrib/epee/include/md5_l.inl index 2aa881092..8e339e006 100644 --- a/contrib/epee/include/md5_l.inl +++ b/contrib/epee/include/md5_l.inl @@ -58,14 +58,11 @@ These notices must be retained in any copies of any part of this documentation and/or software. */ -/* do i need all of this just for htonl()? damn. */ -//#include <sys/types.h> -//#include <sys/param.h> -//#include <sys/socket.h> -//#include <netinet/in.h> - - - +#ifdef _WIN32 +# include <winsock2.h> +#else +# include <arpa/inet.h> +#endif #include "md5global.h" #include "md5_l.h" #include "hmac-md5.h" |