diff options
author | Craig Tiller <craig.tiller@gmail.com> | 2015-01-23 12:54:05 -0800 |
---|---|---|
committer | Craig Tiller <craig.tiller@gmail.com> | 2015-01-23 12:54:05 -0800 |
commit | 485d77628d0ce8889a420576d5bc41ccbbf48963 (patch) | |
tree | b657a3ac344f57508792269e14504578969a7e80 /src/core/iomgr | |
parent | 1fa4e15f7e935b06f1fc6bb3613ab1eab7028c61 (diff) |
Move string.h to internal code
Diffstat (limited to 'src/core/iomgr')
-rw-r--r-- | src/core/iomgr/resolve_address_posix.c | 2 | ||||
-rw-r--r-- | src/core/iomgr/sockaddr_utils.c | 2 | ||||
-rw-r--r-- | src/core/iomgr/socket_utils_common_posix.c | 2 | ||||
-rw-r--r-- | src/core/iomgr/tcp_posix.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/core/iomgr/resolve_address_posix.c b/src/core/iomgr/resolve_address_posix.c index c9c2c5378a..f80eea7f46 100644 --- a/src/core/iomgr/resolve_address_posix.c +++ b/src/core/iomgr/resolve_address_posix.c @@ -44,9 +44,9 @@ #include "src/core/iomgr/iomgr_internal.h" #include "src/core/iomgr/sockaddr_utils.h" #include "src/core/iomgr/socket_utils_posix.h" +#include "src/core/support/string.h" #include <grpc/support/alloc.h> #include <grpc/support/log.h> -#include <grpc/support/string.h> #include <grpc/support/thd.h> #include <grpc/support/time.h> diff --git a/src/core/iomgr/sockaddr_utils.c b/src/core/iomgr/sockaddr_utils.c index eca14a4f39..5bb1124284 100644 --- a/src/core/iomgr/sockaddr_utils.c +++ b/src/core/iomgr/sockaddr_utils.c @@ -37,8 +37,8 @@ #include <errno.h> #include <string.h> +#include "src/core/support/string.h" #include <grpc/support/host_port.h> -#include <grpc/support/string.h> #include <grpc/support/log.h> #include <grpc/support/port_platform.h> diff --git a/src/core/iomgr/socket_utils_common_posix.c b/src/core/iomgr/socket_utils_common_posix.c index 3a0639f356..1854285b5a 100644 --- a/src/core/iomgr/socket_utils_common_posix.c +++ b/src/core/iomgr/socket_utils_common_posix.c @@ -50,8 +50,8 @@ #include <errno.h> #include "src/core/iomgr/sockaddr_utils.h" +#include "src/core/support/string.h" #include <grpc/support/host_port.h> -#include <grpc/support/string.h> #include <grpc/support/log.h> #include <grpc/support/port_platform.h> #include <grpc/support/sync.h> diff --git a/src/core/iomgr/tcp_posix.c b/src/core/iomgr/tcp_posix.c index 64996bd07d..a9b59df885 100644 --- a/src/core/iomgr/tcp_posix.c +++ b/src/core/iomgr/tcp_posix.c @@ -44,10 +44,10 @@ #include <sys/socket.h> #include <unistd.h> +#include "src/core/support/string.h" #include <grpc/support/alloc.h> #include <grpc/support/log.h> #include <grpc/support/slice.h> -#include <grpc/support/string.h> #include <grpc/support/sync.h> #include <grpc/support/time.h> |