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:
@@ -20,7 +20,7 @@
|
||||
#ifndef ARM_DISASSEMBLER_H
|
||||
#define ARM_DISASSEMBLER_H
|
||||
|
||||
#include "types.h"
|
||||
#include <helper/types.h>
|
||||
|
||||
enum arm_instruction_type
|
||||
{
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
#ifndef ARM_SIMULATOR_H
|
||||
#define ARM_SIMULATOR_H
|
||||
|
||||
#include "types.h"
|
||||
#include <helper/types.h>
|
||||
|
||||
struct target;
|
||||
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
#ifndef ARMV4_5_CACHE_H
|
||||
#define ARMV4_5_CACHE_H
|
||||
|
||||
#include "types.h"
|
||||
#include <helper/types.h>
|
||||
|
||||
struct command_context;
|
||||
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
#ifndef BREAKPOINTS_H
|
||||
#define BREAKPOINTS_H
|
||||
|
||||
#include "types.h"
|
||||
#include <helper/types.h>
|
||||
|
||||
struct target;
|
||||
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
#ifndef MIPS_M4K_H
|
||||
#define MIPS_M4K_H
|
||||
|
||||
#include "types.h"
|
||||
#include <helper/types.h>
|
||||
|
||||
struct target;
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "types.h"
|
||||
#include <helper/types.h>
|
||||
#include "register.h"
|
||||
#include <helper/log.h>
|
||||
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
#ifndef TARGET_H
|
||||
#define TARGET_H
|
||||
|
||||
#include "types.h"
|
||||
#include <helper/types.h>
|
||||
#include <helper/jim.h>
|
||||
|
||||
struct reg;
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
#ifndef TARGET_TYPE_H
|
||||
#define TARGET_TYPE_H
|
||||
|
||||
#include "types.h"
|
||||
#include <helper/types.h>
|
||||
|
||||
struct target;
|
||||
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
#ifndef TRACE_H
|
||||
#define TRACE_H
|
||||
|
||||
#include "types.h"
|
||||
#include <helper/types.h>
|
||||
|
||||
struct target;
|
||||
struct command_context;
|
||||
|
||||
Reference in New Issue
Block a user