change #include "target_request.h" to <target/target_request.h>
commit5a94612148940db460252f2ad68585d96ee71415
authorZachary T Welch <zw@superlucidity.net>
Thu, 3 Dec 2009 12:14:51 +0000 (3 04:14 -0800)
committerZachary T Welch <zw@superlucidity.net>
Thu, 3 Dec 2009 12:24:42 +0000 (3 04:24 -0800)
tree5c63e933197cc773697976af6a0052eff6314557
parentc6dd6a576d0b680f67ad9fd8af12fb342b26c83d
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.
src/server/gdb_server.c
src/server/telnet_server.c