Browse Source

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

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.
tags/v0.4.0-rc1
Zachary T Welch 14 years ago
parent
commit
5e7369d99a
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      src/ecosboard.c
  2. +1
    -1
      src/openocd.c

+ 1
- 1
src/ecosboard.c View File

@@ -32,7 +32,7 @@


#include "server.h" #include "server.h"
#include "telnet_server.h" #include "telnet_server.h"
#include "gdb_server.h"
#include <server/gdb_server.h>
#include "openocd.h" #include "openocd.h"


#include <time_support.h> #include <time_support.h>


+ 1
- 1
src/openocd.c View File

@@ -39,7 +39,7 @@
#include <flash/mflash.h> #include <flash/mflash.h>


#include "server.h" #include "server.h"
#include "gdb_server.h"
#include <server/gdb_server.h>
#include "httpd.h" #include "httpd.h"


#ifdef HAVE_STRINGS_H #ifdef HAVE_STRINGS_H


Loading…
Cancel
Save