Browse Source

change #include "jim.h" to <helper/jim.h>

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.
tags/v0.4.0-rc1
Zachary T Welch 14 years ago
parent
commit
35f1a40f6f
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      src/helper/command.h
  2. +1
    -1
      src/target/target.h

+ 1
- 1
src/helper/command.h View 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


+ 1
- 1
src/target/target.h View File

@@ -27,7 +27,7 @@
#define TARGET_H

#include "types.h"
#include "jim.h"
#include <helper/jim.h>

struct reg;
struct trace;


Loading…
Cancel
Save