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

@@ -31,7 +31,7 @@
#include "stellaris.h"
#include "armv7m.h"
#include <helper/binarybuffer.h>
#include "algorithm.h"
#include <target/algorithm.h>
#define DID0_VER(did0) ((did0 >> 28)&0x07)