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

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

	#include "target_request.h"

the following form should be used.

	#include <target/target_request.h>

The exception is from .c files in the same directory.
__archive__
Zachary T Welch 2009-12-03 04:14:51 -08:00
parent c6dd6a576d
commit 5a94612148
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -28,7 +28,7 @@
#endif
#include "telnet_server.h"
#include "target_request.h"
#include <target/target_request.h>
static unsigned short telnet_port = 4444;