Browse Source

change #include "arm966e.h" to <target/arm966e.h>

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

	#include "arm966e.h"

the following form should be used.

	#include <target/arm966e.h>

The exception is from .c files in the same directory.
tags/v0.4.0-rc1
Zachary T Welch 14 years ago
parent
commit
41e92d8a7a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/flash/nor/str9x.c

+ 1
- 1
src/flash/nor/str9x.c View File

@@ -28,7 +28,7 @@
#endif

#include "str9x.h"
#include "arm966e.h"
#include <target/arm966e.h>
#include <target/algorithm.h>




Loading…
Cancel
Save