Index: /trunk/Ohana/src/opihi/dimm/dimm.c.in
===================================================================
--- /trunk/Ohana/src/opihi/dimm/dimm.c.in	(revision 16431)
+++ /trunk/Ohana/src/opihi/dimm/dimm.c.in	(revision 16432)
@@ -51,4 +51,11 @@
 void cleanup () {
   QuitKapa ();
+  ConfigFree ();
+
+  FreeBasic ();
+  FreeData ();
+  FreeAstro ();
+  FreeDIMM ();
+
   return;
 }
Index: /trunk/Ohana/src/opihi/dimm/init.c
===================================================================
--- /trunk/Ohana/src/opihi/dimm/init.c	(revision 16431)
+++ /trunk/Ohana/src/opihi/dimm/init.c	(revision 16432)
@@ -8,9 +8,9 @@
 
 static Command cmds[] = {  
-  {"altaz",            altaz,            "altaz / celestial coord conversions"},
-  {"camera",           camera,           "camera functions"},
-  {"findstars",        findstars,        "find objects on image"},
-  {"telescope",        telescope,        "telescope communications"},
-  {"version",     version,      "show version information"},
+  {1, "altaz",     altaz,     "altaz / celestial coord conversions"},
+  {1, "camera",    camera,    "camera functions"},
+  {1, "findstars", findstars, "find objects on image"},
+  {1, "telescope", telescope, "telescope communications"},
+  {1, "version",   version,   "show version information"},
 }; 
 
@@ -24,2 +24,5 @@
 
 }
+
+void FreeDIMM () {
+}
