change #include "interface.h" to <jtag/interface.h>

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

	#include "interface.h"

the following form should be used.

	#include <jtag/interface.h>

The exception is from .c files in the same directory.
This commit is contained in:
Zachary T Welch
2009-12-03 04:14:31 -08:00
parent c9e448222c
commit 165fb9309d
19 changed files with 19 additions and 19 deletions

View File

@@ -35,7 +35,7 @@
* for loading and unloading them dynamically from shared libraries.
*/
#include "interface.h"
#include <jtag/interface.h>
/// Dynamically load all JTAG interface modules from specified directory.
void jtag_interface_modules_load(const char *path);