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.
This commit is contained in:
Zachary T Welch
2009-12-03 04:14:29 -08:00
parent ba00ba47d2
commit 6512e5e36b
18 changed files with 18 additions and 18 deletions

View File

@@ -43,7 +43,7 @@
/* project specific includes */
#include "interface.h"
#include "commands.h"
#include "time_support.h"
#include <helper/time_support.h>
#if IS_CYGWIN == 1
#include <windows.h>

View File

@@ -26,7 +26,7 @@
#endif
#include "interface.h"
#include "time_support.h"
#include <helper/time_support.h>
#include "bitq.h"