Browse Source

change #include "replacements.h" to <helper/replacements.h>

Changes from the flat namespace to heirarchical one.  Instead of writing:

	#include "replacements.h"

the following form should be used.

	#include <helper/replacements.h>

The exception is from .c files in the same directory.
tags/v0.4.0-rc1
Zachary T Welch 14 years ago
parent
commit
ba00ba47d2
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/target/armv7a.c

+ 1
- 1
src/target/armv7a.c View File

@@ -20,7 +20,7 @@
#include "config.h"
#endif

#include "replacements.h"
#include <helper/replacements.h>

#include "armv7a.h"
#include "arm_disassembler.h"


Loading…
Cancel
Save