Browse Source

change #include "mips32_pracc.h" to <target/mips32_pracc.h>

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

	#include "mips32_pracc.h"

the following form should be used.

	#include <target/mips32_pracc.h>

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

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

@@ -24,7 +24,7 @@
#define MIPS32_H

#include "target.h"
#include "mips32_pracc.h"
#include <target/mips32_pracc.h>


#define MIPS32_COMMON_MAGIC 0xB320B320


Loading…
Cancel
Save