Skip to content
Snippets Groups Projects
Commit 9f312b49 authored by nnoble's avatar nnoble Committed by Nicolas Noble
Browse files

Fixing include paths for cmdline.

parent 3d726cfc
No related branches found
No related tags found
No related merge requests found
...@@ -31,15 +31,15 @@ ...@@ -31,15 +31,15 @@
* *
*/ */
#include "net/grpc/c/public/support/cmdline.h" #include <grpc/support/cmdline.h>
#include <limits.h> #include <limits.h>
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
#include "net/grpc/c/public/support/alloc.h" #include <grpc/support/alloc.h>
#include "net/grpc/c/public/support/log.h" #include <grpc/support/log.h>
#include "net/grpc/c/public/support/string.h" #include <grpc/support/string.h>
typedef enum { ARGTYPE_INT, ARGTYPE_BOOL, ARGTYPE_STRING } argtype; typedef enum { ARGTYPE_INT, ARGTYPE_BOOL, ARGTYPE_STRING } argtype;
......
...@@ -31,13 +31,13 @@ ...@@ -31,13 +31,13 @@
* *
*/ */
#include "net/grpc/c/public/support/cmdline.h" #include <grpc/support/cmdline.h>
#include <string.h> #include <string.h>
#include "net/grpc/c/public/support/log.h" #include <grpc/support/log.h>
#include "net/grpc/c/public/support/useful.h" #include <grpc/support/useful.h>
#include "net/grpc/c/test/util/test_config.h" #include "test/core/util/test_config.h"
#define LOG_TEST() gpr_log(GPR_INFO, "%s", __FUNCTION__) #define LOG_TEST() gpr_log(GPR_INFO, "%s", __FUNCTION__)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment