diff options
author | murgatroid99 <mlumish@google.com> | 2016-08-08 17:01:18 -0700 |
---|---|---|
committer | murgatroid99 <mlumish@google.com> | 2016-08-08 17:01:18 -0700 |
commit | 5407089b37581b010504171d939f5a3238411027 (patch) | |
tree | 1b10a95a75862f1f2fc253170adf2cf1e59e5c94 /test/core/util | |
parent | 79b322751f6b6b0c11599235c5e62375c235783d (diff) |
Separate out iomgr-specific constants into a separate header
Diffstat (limited to 'test/core/util')
-rw-r--r-- | test/core/util/port_posix.c | 2 | ||||
-rw-r--r-- | test/core/util/port_windows.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/core/util/port_posix.c b/test/core/util/port_posix.c index 265e0acee1..6e3ab64edd 100644 --- a/test/core/util/port_posix.c +++ b/test/core/util/port_posix.c @@ -31,7 +31,7 @@ * */ -#include <grpc/support/port_platform.h> +#include "src/core/lib/iomgr/port.h" #include "test/core/util/test_config.h" #if defined(GPR_POSIX_SOCKET) && defined(GRPC_TEST_PICK_PORT) diff --git a/test/core/util/port_windows.c b/test/core/util/port_windows.c index 9023719675..4cc0cea0cb 100644 --- a/test/core/util/port_windows.c +++ b/test/core/util/port_windows.c @@ -31,7 +31,7 @@ * */ -#include <grpc/support/port_platform.h> +#include "src/core/lib/iomgr/port.h" #include "test/core/util/test_config.h" #if defined(GPR_WINSOCK_SOCKET) && defined(GRPC_TEST_PICK_PORT) |