]> git.donarmstrong.com Git - bamtools.git/blob - src/api/internal/io/NetUnix_p.h
14b213257bcace4f34bc73bf192ba16b1bbfe193
[bamtools.git] / src / api / internal / io / NetUnix_p.h
1 #ifndef NETUNIX_P_H
2 #define NETUNIX_P_H
3
4 #ifndef _WIN32 // <-- source files only include the proper Net*_p.h, but this is a double-check
5
6 #include <arpa/inet.h>
7 #include <sys/ioctl.h>
8 #include <sys/socket.h>
9 #include <sys/stat.h>
10 #include <sys/time.h>
11 #include <sys/types.h>
12 #include <netdb.h>
13 #include <unistd.h>
14
15 #ifndef   BT_SOCKLEN_T
16 #  define BT_SOCKLEN_T socklen_t
17 #endif
18
19 namespace BamTools {
20 namespace Internal {
21
22 } // namespace Internal
23 } // namespace BamTools
24
25 #endif // _WIN32
26 #endif // NETUNIX_P_H