diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:15:05 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:24:49 -0800 |
commit | 66e45ba611b13bae0c6b7747ce27c37f7bfb21bc (patch) | |
tree | ac786f463d59d6d06285615971bee750fcc992ac /src/xsvf | |
parent | 49675db9723ea6481ea38e9e34351123fc7954a0 (diff) | |
download | openocd_libswd-66e45ba611b13bae0c6b7747ce27c37f7bfb21bc.tar.gz openocd_libswd-66e45ba611b13bae0c6b7747ce27c37f7bfb21bc.tar.bz2 openocd_libswd-66e45ba611b13bae0c6b7747ce27c37f7bfb21bc.tar.xz openocd_libswd-66e45ba611b13bae0c6b7747ce27c37f7bfb21bc.zip |
change #include "svf.h" to <svf/svf.h>
Changes from the flat namespace to heirarchical one. Instead of writing:
#include "svf.h"
the following form should be used.
#include <svf/svf.h>
The exception is from .c files in the same directory.
Diffstat (limited to 'src/xsvf')
-rw-r--r-- | src/xsvf/xsvf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xsvf/xsvf.c b/src/xsvf/xsvf.c index 5cacbed8..b1ddea9b 100644 --- a/src/xsvf/xsvf.c +++ b/src/xsvf/xsvf.c @@ -42,7 +42,7 @@ #include "xsvf.h" #include <jtag/jtag.h> -#include "svf.h" +#include <svf/svf.h> /* XSVF commands, from appendix B of xapp503.pdf */ |