about summary refs log tree commit diff stats
path: root/000organization.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-05-11 10:03:39 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-05-11 10:03:39 -0700
commit455f03383651cb99776f5a4149abb7716abc63e8 (patch)
treed3694cbcfa5b11f7547df27d64b52ac6882e70f2 /000organization.cc
parent4e6778d7cc155c8ad38b605a1dfa9296199afd58 (diff)
downloadmu-455f03383651cb99776f5a4149abb7716abc63e8.tar.gz
1342
Diffstat (limited to '000organization.cc')
-rw-r--r--000organization.cc16
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.