diff --git a/src/core/support/cmdline.c b/src/core/support/cmdline.c
index bd8f822f0ea3457b4dfe6ea91bdce74cfb20c228..ff163a1f6cc1bfc57d9dffa6f1f2ba850a233250 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 <grpc/support/cmdline.h>
 
 #include <limits.h>
 #include <stdio.h>
 #include <string.h>
 
-#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 <grpc/support/alloc.h>
+#include <grpc/support/log.h>
+#include <grpc/support/string.h>
 
 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 62aac4bf8931263ba76c1490a175b41d99be708f..91035a662b58db0ae06725aa4d37eee0b9e4dc6a 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 <grpc/support/cmdline.h>
 
 #include <string.h>
 
-#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 <grpc/support/log.h>
+#include <grpc/support/useful.h>
+#include "test/core/util/test_config.h"
 
 #define LOG_TEST() gpr_log(GPR_INFO, "%s", __FUNCTION__)