From: Zachary T Welch Date: Thu, 3 Dec 2009 12:14:50 +0000 (-0800) Subject: change #include "register.h" to X-Git-Tag: v0.4.0-rc1~165 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=fa43bdff54a2f42e7c5a77304d8d1ffb3fe75ea5;p=openocd change #include "register.h" to Changes from the flat namespace to heirarchical one. Instead of writing: #include "register.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 cd8c46cd..31294014 100644 --- a/src/server/gdb_server.c +++ b/src/server/gdb_server.c @@ -29,7 +29,7 @@ #include #include "target_request.h" -#include "register.h" +#include #include "server.h" #include "flash.h" #include "gdb_server.h"