]> git.sur5r.net Git - openocd/commitdiff
change #include "replacements.h" to <helper/replacements.h>
authorZachary T Welch <zw@superlucidity.net>
Thu, 3 Dec 2009 12:14:28 +0000 (04:14 -0800)
committerZachary T Welch <zw@superlucidity.net>
Thu, 3 Dec 2009 12:22:52 +0000 (04:22 -0800)
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.

src/target/armv7a.c

index ae5ed087a0077a5991ff27771b45f7870a038d56..5d3976f57522ca111aa657a77003103aee57be0e 100644 (file)
@@ -20,7 +20,7 @@
 #include "config.h"
 #endif
 
-#include "replacements.h"
+#include <helper/replacements.h>
 
 #include "armv7a.h"
 #include "arm_disassembler.h"