Browse Source

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.
tags/v0.4.0-rc1
Zachary T Welch 14 years ago
parent
commit
264d24495d
7 changed files with 7 additions and 7 deletions
  1. +1
    -1
      src/helper/configuration.h
  2. +1
    -1
      src/helper/log.h
  3. +1
    -1
      src/jtag/drivers/driver.c
  4. +1
    -1
      src/pld/pld.h
  5. +1
    -1
      src/target/armv4_5.h
  6. +1
    -1
      src/target/armv7a.c
  7. +1
    -1
      src/xsvf/xsvf.h

+ 1
- 1
src/helper/configuration.h View File

@@ -23,7 +23,7 @@
#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[]);


+ 1
- 1
src/helper/log.h View File

@@ -26,7 +26,7 @@
#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


+ 1
- 1
src/jtag/drivers/driver.c View File

@@ -33,7 +33,7 @@

#include "interface.h"
#include "minidriver.h"
#include "command.h"
#include <helper/command.h>

struct jtag_callback_entry
{


+ 1
- 1
src/pld/pld.h View File

@@ -20,7 +20,7 @@
#ifndef PLD_H
#define PLD_H

#include "command.h"
#include <helper/command.h>

struct pld_device;



+ 1
- 1
src/target/armv4_5.h View File

@@ -27,7 +27,7 @@
#define ARMV4_5_H

#include "target.h"
#include "command.h"
#include <helper/command.h>


typedef enum armv4_5_mode


+ 1
- 1
src/target/armv7a.c View File

@@ -27,7 +27,7 @@

#include "register.h"
#include <helper/binarybuffer.h>
#include "command.h"
#include <helper/command.h>

#include <stdlib.h>
#include <string.h>


+ 1
- 1
src/xsvf/xsvf.h View File

@@ -20,7 +20,7 @@
#ifndef XSVF_H
#define XSVF_H

#include "command.h"
#include <helper/command.h>

int xsvf_register_commands(struct command_context *cmd_ctx);



Loading…
Cancel
Save