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

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

	#include "target.h"

the following form should be used.

	#include <target/target.h>

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

View File

@@ -28,7 +28,7 @@
#endif
#include "server.h"
#include "target.h"
#include <target/target.h>
#include "openocd.h"
#include "tcl_server.h"
#include "telnet_server.h"