Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreutarass2010-05-15 00:33:48 +0000
committereutarass2010-05-15 00:33:48 +0000
commit7a539909ba65b33bf6ad386fa6440e836925d2e0 (patch)
treef5cb16b784f63e10f5efb1591afa433196a54258 /framework/cache.c
parent3897de73f1382a05ce42ba824de23bd285586827 (diff)
downloadorg.eclipse.tcf.agent-7a539909ba65b33bf6ad386fa6440e836925d2e0.tar.gz
org.eclipse.tcf.agent-7a539909ba65b33bf6ad386fa6440e836925d2e0.tar.xz
org.eclipse.tcf.agent-7a539909ba65b33bf6ad386fa6440e836925d2e0.zip
TCF Agent: Bug 225082: [tcf][releng] Improve TCF Agent build directory structure:
1. #include statements changed to include directory names, because flat include can easily lead to unwanted name clashes. 2. clients now don't have to add -I to compiler command line for every source directory 3. #include "..." changed to #include <...> to allow substitution of header files by clients.
Diffstat (limited to 'framework/cache.c')
-rw-r--r--framework/cache.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/framework/cache.c b/framework/cache.c
index 82fa0ce5..22099421 100644
--- a/framework/cache.c
+++ b/framework/cache.c
@@ -16,14 +16,14 @@
* Abstract asynchronous data cache support.
*/
-#include "config.h"
+#include <config.h>
#include <assert.h>
-#include "errors.h"
-#include "exceptions.h"
-#include "myalloc.h"
-#include "events.h"
-#include "trace.h"
-#include "cache.h"
+#include <framework/errors.h>
+#include <framework/exceptions.h>
+#include <framework/myalloc.h>
+#include <framework/events.h>
+#include <framework/trace.h>
+#include <framework/cache.h>
typedef struct WaitingCacheClient {
CacheClient * client;

Back to the top