change #include "image.h" to <target/image.h>

Changes from the flat namespace to heirarchical one.  Instead of writing:

	#include "image.h"

the following form should be used.

	#include <target/image.h>

The exception is from .c files in the same directory.
This commit is contained in:
Zachary T Welch
2009-12-03 04:14:47 -08:00
parent 0241b1e105
commit 7da02a8330
5 changed files with 5 additions and 5 deletions

View File

@@ -33,7 +33,7 @@
#include "server.h"
#include "flash.h"
#include "gdb_server.h"
#include "image.h"
#include <target/image.h>
#include <jtag/jtag.h>