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

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

	#include "ioutil.h"

the following form should be used.

	#include <helper/ioutil.h>

The exception is from .c files in the same directory.
This commit is contained in:
Zachary T Welch 2009-12-03 04:14:26 -08:00
parent 14ed20967f
commit 2fc071c6e1
2 changed files with 2 additions and 2 deletions

View File

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

View File

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