change #include "xsvf.h" to <xsvf/xsvf.h>

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

	#include "xsvf.h"

the following form should be used.

	#include <xsvf/xsvf.h>

The exception is from .c files in the same directory.
This commit is contained in:
Zachary T Welch 2009-12-03 04:15:05 -08:00
parent 66e45ba611
commit 12499f97fd
2 changed files with 2 additions and 2 deletions

View File

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

View File

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