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:
Zachary T Welch
2009-12-03 04:14:25 -08:00
parent d1bc4375e9
commit 264d24495d
7 changed files with 7 additions and 7 deletions

View File

@@ -20,7 +20,7 @@
#ifndef PLD_H
#define PLD_H
#include "command.h"
#include <helper/command.h>
struct pld_device;