From: Zachary T Welch Date: Thu, 3 Dec 2009 12:14:44 +0000 (-0800) Subject: change #include "breakpoints.h" to X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=26e4fac57e2e022409b63a444928a41399a0a76b;p=fw%2Fopenocd change #include "breakpoints.h" to Changes from the flat namespace to heirarchical one. Instead of writing: #include "breakpoints.h" the following form should be used. #include The exception is from .c files in the same directory. --- diff --git a/src/server/gdb_server.c b/src/server/gdb_server.c index ef8d7f229..5cda21e23 100644 --- a/src/server/gdb_server.c +++ b/src/server/gdb_server.c @@ -27,7 +27,7 @@ #include "config.h" #endif -#include "breakpoints.h" +#include #include "target_request.h" #include "register.h" #include "server.h"