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

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

	#include "algorithm.h"

the following form should be used.

	#include <target/algorithm.h>

The exception is from .c files in the same directory.
This commit is contained in:
Zachary T Welch
2009-12-03 04:14:35 -08:00
parent 2641fd9576
commit 2958665f6b
10 changed files with 10 additions and 10 deletions

View File

@@ -24,7 +24,7 @@
#include "flash.h"
#include "embeddedice.h"
#include "image.h"
#include "algorithm.h"
#include <target/algorithm.h>
#if 0