change #include "membuf.h" to <helper/membuf.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 "membuf.h"

the following form should be used.

#include <helper/membuf.h>

The exception is from .c files in the same directory.

src/flash/nor/at91sam3.c

index be17a5f807d3fcbdf78e2d8c4ccd8594e2c9fe14..6be43f80ff2587a83ee2ea3fa742b681b2f19fcf 100644 (file)
@@ -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"