From 6512e5e36b067ae458cb7f6a9fdfb08d38da3583 Mon Sep 17 00:00:00 2001
From: Zachary T Welch <zw@superlucidity.net>
Date: Thu, 3 Dec 2009 04:14:29 -0800
Subject: change #include "time_support.h" to <helper/time_support.h>

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

	#include "time_support.h"

the following form should be used.

	#include <helper/time_support.h>

The exception is from .c files in the same directory.
---
 src/pld/pld.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'src/pld')

diff --git a/src/pld/pld.c b/src/pld/pld.c
index 985e3648..6a0bd93d 100644
--- a/src/pld/pld.c
+++ b/src/pld/pld.c
@@ -23,7 +23,7 @@
 
 #include "pld.h"
 #include <helper/log.h>
-#include "time_support.h"
+#include <helper/time_support.h>
 
 
 /* pld drivers
-- 
cgit v1.2.3