change #include "pld.h" to <pld/pld.h>

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

	#include "pld.h"

the following form should be used.

	#include <pld/pld.h>

The exception is from .c files in the same directory.
This commit is contained in:
Zachary T Welch 2009-12-03 04:15:04 -08:00
parent 8256a792c5
commit 49675db972
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@
#include "xsvf.h"
#include "svf.h"
#include <flash/nand.h>
#include "pld.h"
#include <pld/pld.h>
#include <server/server.h>
#include <server/telnet_server.h>

View File

@ -35,7 +35,7 @@
#include "xsvf.h"
#include "svf.h"
#include <flash/nand.h>
#include "pld.h"
#include <pld/pld.h>
#include <flash/mflash.h>
#include <server/server.h>