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.
#endif
#include <target/breakpoints.h>
-#include "target_request.h"
+#include <target/target_request.h>
#include <target/register.h>
#include "server.h"
#include "flash.h"
#endif
#include "telnet_server.h"
-#include "target_request.h"
+#include <target/target_request.h>
static unsigned short telnet_port = 4444;