change #include "telnet_server.h" to <server/telnet_server.h>

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.
__archive__
Zachary T Welch 2009-12-03 04:15:03 -08:00
parent c538a830cd
commit 8256a792c5
1 changed files with 1 additions and 1 deletions

View 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"