move headers from src to src/avian

This is necessary to avoid name conflicts on various platforms.  For
example, iOS has its own util.h, and Windows has a process.h.  By
including our version as e.g. "avian/util.h", we avoid confusion with
the system version.
This commit is contained in:
Joel Dice
2013-02-27 13:25:50 -07:00
parent 44defda878
commit 5e2d00010b
78 changed files with 135 additions and 135 deletions

View File

@ -10,10 +10,10 @@
#include <stdio.h>
#include "common.h"
#include "avian/common.h"
#include <avian/vm/heap/heap.h>
#include <avian/vm/system/system.h>
#include "target.h"
#include "avian/target.h"
#include <avian/vm/codegen/assembler.h>
#include <avian/vm/codegen/targets.h>