From: Zachary T Welch Date: Thu, 3 Dec 2009 12:14:28 +0000 (-0800) Subject: change #include "membuf.h" to X-Git-Tag: v0.4.0-rc1~195 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=6c3a28ca260833dc2347d16792fb2cb2abec6e52;p=openocd change #include "membuf.h" to Changes from the flat namespace to heirarchical one. Instead of writing: #include "membuf.h" the following form should be used. #include The exception is from .c files in the same directory. --- 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 #include "types.h" #include "flash.h" -#include "membuf.h" +#include #include "at91sam3.h" #include "time_support.h"