Browse Source

change #include "configuration.h" to <helper/configuration.h>

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

	#include "configuration.h"

the following form should be used.

	#include <helper/configuration.h>

The exception is from .c files in the same directory.
tags/v0.4.0-rc1
Zachary T Welch 14 years ago
parent
commit
0b7720d2ff
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

@@ -24,7 +24,7 @@
#include "types.h"
#include "jtag.h"
#include "ioutil.h"
#include "configuration.h"
#include <helper/configuration.h>
#include "xsvf.h"
#include "svf.h"
#include "nand.h"


+ 1
- 1
src/openocd.c View File

@@ -31,7 +31,7 @@
#include "openocd.h"
#include "jtag.h"
#include "ioutil.h"
#include "configuration.h"
#include <helper/configuration.h>
#include "xsvf.h"
#include "svf.h"
#include "nand.h"


Loading…
Cancel
Save