change #include "log.h" to <helper/log.h>

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

	#include "log.h"

the following form should be used.

	#include <helper/log.h>

The exception is from .c files in the same directory.
This commit is contained in:
Zachary T Welch
2009-12-03 04:14:28 -08:00
parent 35f1a40f6f
commit c79cca04be
19 changed files with 19 additions and 19 deletions

View File

@@ -32,7 +32,7 @@
#include "target_type.h"
#include <helper/binarybuffer.h>
#include "trace.h"
#include "log.h"
#include <helper/log.h>
static int charmsg_mode = 0;