diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-05-11 10:03:39 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-05-11 10:03:39 -0700 |
commit | 455f03383651cb99776f5a4149abb7716abc63e8 (patch) | |
tree | d3694cbcfa5b11f7547df27d64b52ac6882e70f2 | |
parent | 4e6778d7cc155c8ad38b605a1dfa9296199afd58 (diff) | |
download | mu-455f03383651cb99776f5a4149abb7716abc63e8.tar.gz |
1342
-rw-r--r-- | 000organization.cc | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/000organization.cc b/000organization.cc index 9c45728a..61c60b63 100644 --- a/000organization.cc +++ b/000organization.cc @@ -94,7 +94,7 @@ // Types // End Types -// prototypes are auto-generated; define your functions in any order +// prototypes are auto-generated in the makefile; define your functions in any order #include "function_list" // by convention, files ending with '_list' are auto-generated // Globals @@ -110,6 +110,13 @@ int main(int argc, char* argv[]) { return 0; // End Main } +//: our first directive; will move the include above the program +:(before "End Includes") +#include<stdlib.h> + +//: Without directives or with the :(code) directive, lines get added at the +//: end. +:(code) void setup() { // End Setup } @@ -117,10 +124,3 @@ void setup() { void teardown() { // End Teardown } - -:(before "End Includes") -#include<stdlib.h> - -:(code) -//: Without directives or with the :(code) directive, lines get added at the -//: end. |