diff options
| author | Robert Backhaus <[email protected]> | 2013-11-22 23:22:53 +1000 |
|---|---|---|
| committer | Robert Backhaus <[email protected]> | 2013-11-22 23:22:53 +1000 |
| commit | 9ac5a01c73e7ac7c5204f6cb3b8615c0b01445f0 (patch) | |
| tree | 004ef6f5db547fdeaebb14f31b9e80f0c7b9ac41 /src/compat.h | |
| parent | Merge pull request #3273 (diff) | |
| download | discoin-9ac5a01c73e7ac7c5204f6cb3b8615c0b01445f0.tar.xz discoin-9ac5a01c73e7ac7c5204f6cb3b8615c0b01445f0.zip | |
Move types.h include before ifaddres.h for u_int declaration
Diffstat (limited to 'src/compat.h')
| -rw-r--r-- | src/compat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compat.h b/src/compat.h index 1deef493c..7e001d81e 100644 --- a/src/compat.h +++ b/src/compat.h @@ -26,6 +26,7 @@ #include <windows.h> #include <ws2tcpip.h> #else +#include <sys/types.h> #include <arpa/inet.h> #include <ifaddrs.h> #include <limits.h> @@ -35,7 +36,6 @@ #include <sys/fcntl.h> #include <sys/mman.h> #include <sys/socket.h> -#include <sys/types.h> #include <unistd.h> #endif |