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

#include "gdb_server.h"

the following form should be used.

#include <server/gdb_server.h>

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

src/ecosboard.c
src/openocd.c

index 2464868e73619fcfe82c5d747930346df8d4b87c..d94f8b4738738a4d43e4eb97457333cec58b9a99 100644 (file)
@@ -32,7 +32,7 @@
 
 #include "server.h"
 #include "telnet_server.h"
-#include "gdb_server.h"
+#include <server/gdb_server.h>
 #include "openocd.h"
 
 #include <time_support.h>
index 9377816ff8f9a59f87bf4b969fcd9a6236d4b8ed..c06142362055a403b53df9a83aada489932497b1 100644 (file)
@@ -39,7 +39,7 @@
 #include <flash/mflash.h>
 
 #include "server.h"
-#include "gdb_server.h"
+#include <server/gdb_server.h>
 #include "httpd.h"
 
 #ifdef HAVE_STRINGS_H