change #include "telnet_server.h" to <server/telnet_server.h>
authorZachary T Welch <zw@superlucidity.net>
Thu, 3 Dec 2009 12:15:03 +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 "telnet_server.h"

the following form should be used.

#include <server/telnet_server.h>

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

src/ecosboard.c

index 53ad7bab10f3b28bf3339f1de431288fd3b7e91c..fa2e2c6ee0ca053537645214745691dbeb8971d9 100644 (file)
@@ -31,7 +31,7 @@
 #include "pld.h"
 
 #include <server/server.h>
-#include "telnet_server.h"
+#include <server/telnet_server.h>
 #include <server/gdb_server.h>
 #include "openocd.h"