mirror of
https://github.com/pineappleEA/pineapple-src.git
synced 2024-11-26 18:38:23 -05:00
11 lines
147 B
C
Executable File
11 lines
147 B
C
Executable File
/*
|
|
* Public domain
|
|
* netinet/tcp.h compatibility shim
|
|
*/
|
|
|
|
#ifndef _WIN32
|
|
#include_next <netinet/tcp.h>
|
|
#else
|
|
#include <win32netcompat.h>
|
|
#endif
|