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:
parent
1650ab3a22
commit
0241b1e105
|
@ -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;
|
||||||
|
|
||||||
|
|
|
@ -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>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue