diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:14:48 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:24:41 -0800 |
commit | a8880f0b5ab7f5c9d4d3b031fd487caac766b99f (patch) | |
tree | f109c5e50a5e777ba9e25a821b4a80e1e107273c /src | |
parent | 7da02a8330d48f05f1ea9af93adb572f083aa728 (diff) | |
download | openocd_libswd-a8880f0b5ab7f5c9d4d3b031fd487caac766b99f.tar.gz openocd_libswd-a8880f0b5ab7f5c9d4d3b031fd487caac766b99f.tar.bz2 openocd_libswd-a8880f0b5ab7f5c9d4d3b031fd487caac766b99f.tar.xz openocd_libswd-a8880f0b5ab7f5c9d4d3b031fd487caac766b99f.zip |
change #include "mips32.h" to <target/mips32.h>
Changes from the flat namespace to heirarchical one. Instead of writing:
#include "mips32.h"
the following form should be used.
#include <target/mips32.h>
The exception is from .c files in the same directory.
Diffstat (limited to 'src')
-rw-r--r-- | src/flash/nor/pic32mx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/flash/nor/pic32mx.c b/src/flash/nor/pic32mx.c index 9bb6c97e..d2289b29 100644 --- a/src/flash/nor/pic32mx.c +++ b/src/flash/nor/pic32mx.c @@ -28,7 +28,7 @@ #endif #include "pic32mx.h" -#include "mips32.h" +#include <target/mips32.h> static |