Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEugene Tarassov2011-11-11 01:36:40 +0000
committerEugene Tarassov2011-11-11 01:36:40 +0000
commit846c7264e3daaebb87dc9ab959bbfd2472abfd0e (patch)
tree6e96e22e7acccb509f6c03cbe264f900a72b2eb8 /agent/tcf/main/main_va.c
parenta107edc216f94c5ec059fdf74541908bc7e979bb (diff)
downloadorg.eclipse.tcf.agent-846c7264e3daaebb87dc9ab959bbfd2472abfd0e.tar.gz
org.eclipse.tcf.agent-846c7264e3daaebb87dc9ab959bbfd2472abfd0e.tar.xz
org.eclipse.tcf.agent-846c7264e3daaebb87dc9ab959bbfd2472abfd0e.zip
#include directives changed to include "tcf" as the first directory name in header file path.
Diffstat (limited to 'agent/tcf/main/main_va.c')
-rw-r--r--agent/tcf/main/main_va.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/agent/tcf/main/main_va.c b/agent/tcf/main/main_va.c
index 84387234..19f3cfa4 100644
--- a/agent/tcf/main/main_va.c
+++ b/agent/tcf/main/main_va.c
@@ -22,23 +22,23 @@
* The code is intended to be an example of service proxing implementation.
*/
-#include <config.h>
+#include <tcf/config.h>
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <assert.h>
-#include <framework/asyncreq.h>
-#include <framework/events.h>
-#include <framework/trace.h>
-#include <framework/myalloc.h>
-#include <framework/json.h>
-#include <framework/channel.h>
-#include <framework/protocol.h>
-#include <framework/proxy.h>
-#include <framework/errors.h>
-#include <framework/plugins.h>
-#include <services/discovery.h>
+#include <tcf/framework/asyncreq.h>
+#include <tcf/framework/events.h>
+#include <tcf/framework/trace.h>
+#include <tcf/framework/myalloc.h>
+#include <tcf/framework/json.h>
+#include <tcf/framework/channel.h>
+#include <tcf/framework/protocol.h>
+#include <tcf/framework/proxy.h>
+#include <tcf/framework/errors.h>
+#include <tcf/framework/plugins.h>
+#include <tcf/services/discovery.h>
static const char * progname;
static Protocol * proto;

Back to the top