Browse Source

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.
tags/v0.4.0-rc1
Zachary T Welch 14 years ago
parent
commit
a1c40f5120
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/target/cortex_a8.h

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

@@ -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…
Cancel
Save