Browse Source

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

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

	#include "etm.h"

the following form should be used.

	#include <target/etm.h>

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

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

@@ -20,7 +20,7 @@
#ifndef ETM_DUMMY_H
#define ETM_DUMMY_H

#include "etm.h"
#include <target/etm.h>

extern struct etm_capture_driver etm_dummy_capture_driver;



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

@@ -20,7 +20,7 @@
#ifndef OOCD_TRACE_H
#define OOCD_TRACE_H

#include "etm.h"
#include <target/etm.h>

#include <termios.h>



Loading…
Cancel
Save