Browse Source

change #include "trace.h" to <target/trace.h>

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

	#include "trace.h"

the following form should be used.

	#include <target/trace.h>

The exception is from .c files in the same directory.
tags/v0.4.0-rc1
Zachary T Welch 14 years ago
parent
commit
7a4f4457e5
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      src/target/etm.h
  2. +1
    -1
      src/target/xscale.h

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

@@ -23,7 +23,7 @@
#ifndef ETM_H
#define ETM_H

#include "trace.h"
#include <target/trace.h>
#include <target/arm_jtag.h>

struct image;


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

@@ -25,7 +25,7 @@

#include <target/armv4_5.h>
#include <target/armv4_5_mmu.h>
#include "trace.h"
#include <target/trace.h>

#define XSCALE_COMMON_MAGIC 0x58534341



Loading…
Cancel
Save