change #include "breakpoints.h" to <target/breakpoints.h>
authorZachary T Welch <zw@superlucidity.net>
Thu, 3 Dec 2009 12:14:44 +0000 (04:14 -0800)
committerZachary T Welch <zw@superlucidity.net>
Thu, 3 Dec 2009 12:24:41 +0000 (04:24 -0800)
Changes from the flat namespace to heirarchical one.  Instead of writing:

#include "breakpoints.h"

the following form should be used.

#include <target/breakpoints.h>

The exception is from .c files in the same directory.

src/server/gdb_server.c

index ef8d7f22900dfd45b80fd21df0354a2044b52045..5cda21e235aec71adbd5aed799fc28c054282439 100644 (file)
@@ -27,7 +27,7 @@
 #include "config.h"
 #endif
 
-#include "breakpoints.h"
+#include <target/breakpoints.h>
 #include "target_request.h"
 #include "register.h"
 #include "server.h"