Moving #include WProgram.h to after other preprocessor directives in the main sketch file.

This commit is contained in:
David A. Mellis 2008-05-07 18:25:40 +00:00
parent 8f75f0299d
commit f84adee213
1 changed files with 2 additions and 4 deletions

View File

@ -321,6 +321,7 @@ public class PdePreprocessor {
int prototypeInsertionPoint = firstStatement(program);
out.print(program.substring(0, prototypeInsertionPoint));
out.print("#include \"WProgram.h\"\n");
// print user defined prototypes
for (int i = 0; i < prototypes.size(); i++) {
@ -336,10 +337,7 @@ public class PdePreprocessor {
*
* @param out PrintStream to write it to.
*/
void writeHeader(PrintStream out)
throws IOException {
out.print("#include \"WProgram.h\"\n");
}
void writeHeader(PrintStream out) throws IOException {}
/**
* Write any necessary closing text.