From: Zachary T Welch Date: Thu, 3 Dec 2009 12:14:27 +0000 (-0800) Subject: change #include "jim.h" to X-Git-Tag: v0.4.0-rc1~197 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=35f1a40f6fad146db9d5546c47c45472d0ef0bed;hp=2fc071c6e1180f8dab1e2513106d5e18213fdc8b;ds=sidebyside change #include "jim.h" to Changes from the flat namespace to heirarchical one. Instead of writing: #include "jim.h" the following form should be used. #include The exception is from .c files in the same directory. --- diff --git a/src/helper/command.h b/src/helper/command.h index 8d68c18387..8beeb7244b 100644 --- a/src/helper/command.h +++ b/src/helper/command.h @@ -32,7 +32,7 @@ /* Jim is provied by eCos */ #include #else -#include "jim.h" +#include #endif /* To achieve C99 printf compatibility in MinGW, gnu_printf should be diff --git a/src/target/target.h b/src/target/target.h index 3e307142fa..43ac65fc1d 100644 --- a/src/target/target.h +++ b/src/target/target.h @@ -27,7 +27,7 @@ #define TARGET_H #include "types.h" -#include "jim.h" +#include struct reg; struct trace;