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.
#ifndef CONFIGURATION_H
#define CONFIGURATION_H
-#include "command.h"
+#include <helper/command.h>
int parse_cmdline_args(struct command_context *cmd_ctx,
int argc, char *argv[]);
#ifndef ERROR_H
#define ERROR_H
-#include "command.h"
+#include <helper/command.h>
/* To achieve C99 printf compatibility in MinGW, gnu_printf should be
* used for __attribute__((format( ... ))), with GCC v4.4 or later
#include "interface.h"
#include "minidriver.h"
-#include "command.h"
+#include <helper/command.h>
struct jtag_callback_entry
{
#ifndef PLD_H
#define PLD_H
-#include "command.h"
+#include <helper/command.h>
struct pld_device;
#define ARMV4_5_H
#include "target.h"
-#include "command.h"
+#include <helper/command.h>
typedef enum armv4_5_mode
#include "register.h"
#include <helper/binarybuffer.h>
-#include "command.h"
+#include <helper/command.h>
#include <stdlib.h>
#include <string.h>
#ifndef XSVF_H
#define XSVF_H
-#include "command.h"
+#include <helper/command.h>
int xsvf_register_commands(struct command_context *cmd_ctx);