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

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

	#include "register.h"

the following form should be used.

	#include <target/register.h>

The exception is from .c files in the same directory.
__archive__
Zachary T Welch 2009-12-03 04:14:50 -08:00
parent aaf948a6be
commit fa43bdff54
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@
#include <target/breakpoints.h>
#include "target_request.h"
#include "register.h"
#include <target/register.h>
#include "server.h"
#include "flash.h"
#include "gdb_server.h"