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

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

	#include "types.h"

the following form should be used.

	#include <helper/types.h>

The exception is from .c files in the same directory.
This commit is contained in:
Zachary T Welch
2009-12-03 04:14:30 -08:00
parent 6512e5e36b
commit df0e90ec8c
20 changed files with 20 additions and 20 deletions

View File

@@ -60,7 +60,7 @@
#include <stdio.h>
#include <string.h>
#include <stddef.h>
#include "types.h"
#include <helper/types.h>
#include "flash.h"
#include <helper/membuf.h>
#include "at91sam3.h"