]> git.sur5r.net Git - openocd/commitdiff
change #include "jim.h" to <helper/jim.h>
authorZachary T Welch <zw@superlucidity.net>
Thu, 3 Dec 2009 12:14:27 +0000 (04:14 -0800)
committerZachary T Welch <zw@superlucidity.net>
Thu, 3 Dec 2009 12:22:52 +0000 (04:22 -0800)
Changes from the flat namespace to heirarchical one.  Instead of writing:

#include "jim.h"

the following form should be used.

#include <helper/jim.h>

The exception is from .c files in the same directory.

src/helper/command.h
src/target/target.h

index 8d68c18387ca9703ad37644734da3830ae8e8c4e..8beeb7244bb57486482464111e58919fe12d202a 100644 (file)
@@ -32,7 +32,7 @@
 /* Jim is provied by eCos */
 #include <cyg/jimtcl/jim.h>
 #else
-#include "jim.h"
+#include <helper/jim.h>
 #endif
 
 /* To achieve C99 printf compatibility in MinGW, gnu_printf should be
index 3e307142fa3ef01fd428642db3ea61e83c35e0db..43ac65fc1d55f4c136df1d01f53dc984e8c9f820 100644 (file)
@@ -27,7 +27,7 @@
 #define TARGET_H
 
 #include "types.h"
-#include "jim.h"
+#include <helper/jim.h>
 
 struct reg;
 struct trace;