Browse Source

change #include "breakpoints.h" to <target/breakpoints.h>

Changes from the flat namespace to heirarchical one.  Instead of writing:

	#include "breakpoints.h"

the following form should be used.

	#include <target/breakpoints.h>

The exception is from .c files in the same directory.
tags/v0.4.0-rc1
Zachary T Welch 14 years ago
parent
commit
26e4fac57e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/server/gdb_server.c

+ 1
- 1
src/server/gdb_server.c View File

@@ -27,7 +27,7 @@
#include "config.h"
#endif

#include "breakpoints.h"
#include <target/breakpoints.h>
#include "target_request.h"
#include "register.h"
#include "server.h"


Loading…
Cancel
Save