From: Zachary T Welch Date: Thu, 3 Dec 2009 12:14:44 +0000 (-0800) Subject: change #include "breakpoints.h" to X-Git-Tag: v0.4.0-rc1~172 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=26e4fac57e2e022409b63a444928a41399a0a76b;p=openocd 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 ef8d7f22..5cda21e2 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"