change #include "command.h" to <helper/command.h>
Changes from the flat namespace to heirarchical one. Instead of writing: #include "command.h" the following form should be used. #include <helper/command.h> The exception is from .c files in the same directory.
This commit is contained in:
parent
d1bc4375e9
commit
264d24495d
|
@ -23,7 +23,7 @@
|
||||||
#ifndef CONFIGURATION_H
|
#ifndef CONFIGURATION_H
|
||||||
#define CONFIGURATION_H
|
#define CONFIGURATION_H
|
||||||
|
|
||||||
#include "command.h"
|
#include <helper/command.h>
|
||||||
|
|
||||||
int parse_cmdline_args(struct command_context *cmd_ctx,
|
int parse_cmdline_args(struct command_context *cmd_ctx,
|
||||||
int argc, char *argv[]);
|
int argc, char *argv[]);
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
#ifndef ERROR_H
|
#ifndef ERROR_H
|
||||||
#define ERROR_H
|
#define ERROR_H
|
||||||
|
|
||||||
#include "command.h"
|
#include <helper/command.h>
|
||||||
|
|
||||||
/* To achieve C99 printf compatibility in MinGW, gnu_printf should be
|
/* To achieve C99 printf compatibility in MinGW, gnu_printf should be
|
||||||
* used for __attribute__((format( ... ))), with GCC v4.4 or later
|
* used for __attribute__((format( ... ))), with GCC v4.4 or later
|
||||||
|
|
|
@ -33,7 +33,7 @@
|
||||||
|
|
||||||
#include "interface.h"
|
#include "interface.h"
|
||||||
#include "minidriver.h"
|
#include "minidriver.h"
|
||||||
#include "command.h"
|
#include <helper/command.h>
|
||||||
|
|
||||||
struct jtag_callback_entry
|
struct jtag_callback_entry
|
||||||
{
|
{
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
#ifndef PLD_H
|
#ifndef PLD_H
|
||||||
#define PLD_H
|
#define PLD_H
|
||||||
|
|
||||||
#include "command.h"
|
#include <helper/command.h>
|
||||||
|
|
||||||
struct pld_device;
|
struct pld_device;
|
||||||
|
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
#define ARMV4_5_H
|
#define ARMV4_5_H
|
||||||
|
|
||||||
#include "target.h"
|
#include "target.h"
|
||||||
#include "command.h"
|
#include <helper/command.h>
|
||||||
|
|
||||||
|
|
||||||
typedef enum armv4_5_mode
|
typedef enum armv4_5_mode
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
|
|
||||||
#include "register.h"
|
#include "register.h"
|
||||||
#include <helper/binarybuffer.h>
|
#include <helper/binarybuffer.h>
|
||||||
#include "command.h"
|
#include <helper/command.h>
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
#ifndef XSVF_H
|
#ifndef XSVF_H
|
||||||
#define XSVF_H
|
#define XSVF_H
|
||||||
|
|
||||||
#include "command.h"
|
#include <helper/command.h>
|
||||||
|
|
||||||
int xsvf_register_commands(struct command_context *cmd_ctx);
|
int xsvf_register_commands(struct command_context *cmd_ctx);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue