From 9f312b49e8558ab6ec7a59f8fef01c42af4bd598 Mon Sep 17 00:00:00 2001 From: nnoble Date: Wed, 7 Jan 2015 01:19:35 -0800 Subject: [PATCH] Fixing include paths for cmdline. --- src/core/support/cmdline.c | 8 ++++---- test/core/support/cmdline_test.c | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/core/support/cmdline.c b/src/core/support/cmdline.c index bd8f822f0ea..ff163a1f6cc 100644 --- a/src/core/support/cmdline.c +++ b/src/core/support/cmdline.c @@ -31,15 +31,15 @@ * */ -#include "net/grpc/c/public/support/cmdline.h" +#include #include #include #include -#include "net/grpc/c/public/support/alloc.h" -#include "net/grpc/c/public/support/log.h" -#include "net/grpc/c/public/support/string.h" +#include +#include +#include typedef enum { ARGTYPE_INT, ARGTYPE_BOOL, ARGTYPE_STRING } argtype; diff --git a/test/core/support/cmdline_test.c b/test/core/support/cmdline_test.c index 62aac4bf893..91035a662b5 100644 --- a/test/core/support/cmdline_test.c +++ b/test/core/support/cmdline_test.c @@ -31,13 +31,13 @@ * */ -#include "net/grpc/c/public/support/cmdline.h" +#include #include -#include "net/grpc/c/public/support/log.h" -#include "net/grpc/c/public/support/useful.h" -#include "net/grpc/c/test/util/test_config.h" +#include +#include +#include "test/core/util/test_config.h" #define LOG_TEST() gpr_log(GPR_INFO, "%s", __FUNCTION__)