diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:14:28 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:22:52 -0800 |
commit | 6c3a28ca260833dc2347d16792fb2cb2abec6e52 (patch) | |
tree | 25f12372ba44b25a6f74b37418fb6ee6815460e5 /src/flash | |
parent | c79cca04bed78839a18e73f3996805eb8001a812 (diff) | |
download | openocd_libswd-6c3a28ca260833dc2347d16792fb2cb2abec6e52.tar.gz openocd_libswd-6c3a28ca260833dc2347d16792fb2cb2abec6e52.tar.bz2 openocd_libswd-6c3a28ca260833dc2347d16792fb2cb2abec6e52.tar.xz openocd_libswd-6c3a28ca260833dc2347d16792fb2cb2abec6e52.zip |
change #include "membuf.h" to <helper/membuf.h>
Changes from the flat namespace to heirarchical one. Instead of writing:
#include "membuf.h"
the following form should be used.
#include <helper/membuf.h>
The exception is from .c files in the same directory.
Diffstat (limited to 'src/flash')
-rw-r--r-- | src/flash/nor/at91sam3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/flash/nor/at91sam3.c b/src/flash/nor/at91sam3.c index be17a5f8..6be43f80 100644 --- a/src/flash/nor/at91sam3.c +++ b/src/flash/nor/at91sam3.c @@ -62,7 +62,7 @@ #include <stddef.h> #include "types.h" #include "flash.h" -#include "membuf.h" +#include <helper/membuf.h> #include "at91sam3.h" #include "time_support.h" |