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.
This commit is contained in:
Zachary T Welch 2009-12-03 04:14:46 -08:00
parent 1650ab3a22
commit 0241b1e105
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@
#ifndef ETM_DUMMY_H #ifndef ETM_DUMMY_H
#define ETM_DUMMY_H #define ETM_DUMMY_H
#include "etm.h" #include <target/etm.h>
extern struct etm_capture_driver etm_dummy_capture_driver; extern struct etm_capture_driver etm_dummy_capture_driver;

View File

@ -20,7 +20,7 @@
#ifndef OOCD_TRACE_H #ifndef OOCD_TRACE_H
#define OOCD_TRACE_H #define OOCD_TRACE_H
#include "etm.h" #include <target/etm.h>
#include <termios.h> #include <termios.h>