change #include "armv7a.h" to <target/armv7a.h>
Changes from the flat namespace to heirarchical one. Instead of writing: #include "armv7a.h" the following form should be used. #include <target/armv7a.h> The exception is from .c files in the same directory.
This commit is contained in:
parent
377c5504b9
commit
a1c40f5120
|
@ -29,7 +29,7 @@
|
|||
#ifndef CORTEX_A8_H
|
||||
#define CORTEX_A8_H
|
||||
|
||||
#include "armv7a.h"
|
||||
#include <target/armv7a.h>
|
||||
|
||||
extern char* cortex_a8_state_strings[];
|
||||
|
||||
|
|
Loading…
Reference in New Issue