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.
This commit is contained in:
Zachary T Welch
2009-12-03 04:14:27 -08:00
parent 2fc071c6e1
commit 35f1a40f6f
2 changed files with 2 additions and 2 deletions

View File

@@ -27,7 +27,7 @@
#define TARGET_H
#include "types.h"
#include "jim.h"
#include <helper/jim.h>
struct reg;
struct trace;