Skip to content
Snippets Groups Projects
Commit a1c40f51 authored by Zachary T Welch's avatar Zachary T Welch
Browse files

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.
parent 377c5504
No related branches found
No related tags found
No related merge requests found
......@@ -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[];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment