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:
parent
14ed20967f
commit
2fc071c6e1
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue