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

Changes from the flat namespace to heirarchical one.  Instead of writing:

	#include "types.h"

the following form should be used.

	#include <helper/types.h>

The exception is from .c files in the same directory.
This commit is contained in:
Zachary T Welch
2009-12-03 04:14:30 -08:00
parent 6512e5e36b
commit df0e90ec8c
20 changed files with 20 additions and 20 deletions

View File

@@ -20,7 +20,7 @@
#ifndef ARM_DISASSEMBLER_H
#define ARM_DISASSEMBLER_H
#include "types.h"
#include <helper/types.h>
enum arm_instruction_type
{

View File

@@ -20,7 +20,7 @@
#ifndef ARM_SIMULATOR_H
#define ARM_SIMULATOR_H
#include "types.h"
#include <helper/types.h>
struct target;

View File

@@ -20,7 +20,7 @@
#ifndef ARMV4_5_CACHE_H
#define ARMV4_5_CACHE_H
#include "types.h"
#include <helper/types.h>
struct command_context;

View File

@@ -20,7 +20,7 @@
#ifndef BREAKPOINTS_H
#define BREAKPOINTS_H
#include "types.h"
#include <helper/types.h>
struct target;

View File

@@ -23,7 +23,7 @@
#ifndef MIPS_M4K_H
#define MIPS_M4K_H
#include "types.h"
#include <helper/types.h>
struct target;

View File

@@ -24,7 +24,7 @@
#include "config.h"
#endif
#include "types.h"
#include <helper/types.h>
#include "register.h"
#include <helper/log.h>

View File

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

View File

@@ -26,7 +26,7 @@
#ifndef TARGET_TYPE_H
#define TARGET_TYPE_H
#include "types.h"
#include <helper/types.h>
struct target;

View File

@@ -20,7 +20,7 @@
#ifndef TRACE_H
#define TRACE_H
#include "types.h"
#include <helper/types.h>
struct target;
struct command_context;