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

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

	#include "fileio.h"

the following form should be used.

	#include <helper/fileio.h>

The exception is from .c files in the same directory.
This commit is contained in:
Zachary T Welch
2009-12-03 04:14:26 -08:00
parent 0b7720d2ff
commit 14ed20967f
3 changed files with 3 additions and 3 deletions

View File

@@ -26,7 +26,7 @@
#ifndef IMAGE_H
#define IMAGE_H
#include "fileio.h"
#include <helper/fileio.h>
#ifdef HAVE_ELF_H
#include <elf.h>