Index: /trunk/glueforge/templates/psdb/alloc.tt
===================================================================
--- /trunk/glueforge/templates/psdb/alloc.tt	(revision 4168)
+++ /trunk/glueforge/templates/psdb/alloc.tt	(revision 4169)
@@ -13,5 +13,6 @@
         [%- i = i + 1 -%]
     [%- END -%]
-) {
+)
+{
     [% indented(object_name, "*object") %];
 
Index: /trunk/glueforge/templates/psdb/alloc_c.tt
===================================================================
--- /trunk/glueforge/templates/psdb/alloc_c.tt	(revision 4168)
+++ /trunk/glueforge/templates/psdb/alloc_c.tt	(revision 4169)
@@ -5,5 +5,6 @@
 #include <stdlib.h>
 
-int main () {
+int main ()
+{
     [% indented(object_name, "*object") %];
 
Index: /trunk/glueforge/templates/psdb/cleanup.tt
===================================================================
--- /trunk/glueforge/templates/psdb/cleanup.tt	(revision 4168)
+++ /trunk/glueforge/templates/psdb/cleanup.tt	(revision 4169)
@@ -1,3 +1,4 @@
-void [% namespace %]Cleanup(psDB *dbh) {
+void [% namespace %]Cleanup(psDB *dbh)
+{
     psDBCleanup(dbh);
 }
Index: /trunk/glueforge/templates/psdb/cleanup_c.tt
===================================================================
--- /trunk/glueforge/templates/psdb/cleanup_c.tt	(revision 4168)
+++ /trunk/glueforge/templates/psdb/cleanup_c.tt	(revision 4169)
@@ -3,5 +3,6 @@
 #include <stdlib.h>
 
-int main () {
+int main ()
+{
     psDB            *dbh;
 
Index: /trunk/glueforge/templates/psdb/code.tt
===================================================================
--- /trunk/glueforge/templates/psdb/code.tt	(revision 4168)
+++ /trunk/glueforge/templates/psdb/code.tt	(revision 4169)
@@ -11,3 +11,3 @@
 [% INCLUDE pop.tt %]
 [% INCLUDE insertobject.tt %]
-[% INCLUDE popobject.tt %]
+[% INCLUDE popobject.tt -%]
Index: /trunk/glueforge/templates/psdb/createtable.tt
===================================================================
--- /trunk/glueforge/templates/psdb/createtable.tt	(revision 4168)
+++ /trunk/glueforge/templates/psdb/createtable.tt	(revision 4169)
@@ -1,3 +1,4 @@
-bool [% namespace %]CreateTable(psDB *dbh) {
+bool [% namespace %]CreateTable(psDB *dbh)
+{
     psMetadata          *md;
     bool                status;
Index: /trunk/glueforge/templates/psdb/createtable_c.tt
===================================================================
--- /trunk/glueforge/templates/psdb/createtable_c.tt	(revision 4168)
+++ /trunk/glueforge/templates/psdb/createtable_c.tt	(revision 4169)
@@ -3,5 +3,6 @@
 #include <stdlib.h>
 
-int main () {
+int main ()
+{
     psDB            *dbh;
 
Index: /trunk/glueforge/templates/psdb/dbcleanup_c.tt
===================================================================
--- /trunk/glueforge/templates/psdb/dbcleanup_c.tt	(revision 4168)
+++ /trunk/glueforge/templates/psdb/dbcleanup_c.tt	(revision 4169)
@@ -2,5 +2,6 @@
 #include <stdlib.h>
 
-int main () {
+int main ()
+{
     psDB            *dbh;
 
Index: /trunk/glueforge/templates/psdb/dbsetup_c.tt
===================================================================
--- /trunk/glueforge/templates/psdb/dbsetup_c.tt	(revision 4168)
+++ /trunk/glueforge/templates/psdb/dbsetup_c.tt	(revision 4169)
@@ -3,5 +3,6 @@
 #include <stdlib.h>
 
-int main () {
+int main ()
+{
     psDB            *dbh;
 
Index: /trunk/glueforge/templates/psdb/droptable.tt
===================================================================
--- /trunk/glueforge/templates/psdb/droptable.tt	(revision 4168)
+++ /trunk/glueforge/templates/psdb/droptable.tt	(revision 4169)
@@ -1,3 +1,4 @@
-bool [% namespace %]DropTable(psDB *dbh) {
+bool [% namespace %]DropTable(psDB *dbh)
+{
     bool            status;
 
Index: /trunk/glueforge/templates/psdb/droptable_c.tt
===================================================================
--- /trunk/glueforge/templates/psdb/droptable_c.tt	(revision 4168)
+++ /trunk/glueforge/templates/psdb/droptable_c.tt	(revision 4169)
@@ -3,5 +3,6 @@
 #include <stdlib.h>
 
-int main () {
+int main ()
+{
     psDB            *dbh;
 
Index: /trunk/glueforge/templates/psdb/droptable_h.tt
===================================================================
--- /trunk/glueforge/templates/psdb/droptable_h.tt	(revision 4168)
+++ /trunk/glueforge/templates/psdb/droptable_h.tt	(revision 4169)
@@ -2,5 +2,5 @@
  *
  * @return true on success
-*/
+ */
 
 bool [% namespace %]DropTable(
Index: /trunk/glueforge/templates/psdb/init.tt
===================================================================
--- /trunk/glueforge/templates/psdb/init.tt	(revision 4168)
+++ /trunk/glueforge/templates/psdb/init.tt	(revision 4169)
@@ -1,4 +1,4 @@
-psDB *[% namespace %]Init(const char *host, const char *user, const char *passwd, const char *dbname) {
-
+psDB *[% namespace %]Init(const char *host, const char *user, const char *passwd, const char *dbname)
+{
     psDB            *dbh;
 
Index: /trunk/glueforge/templates/psdb/init_c.tt
===================================================================
--- /trunk/glueforge/templates/psdb/init_c.tt	(revision 4168)
+++ /trunk/glueforge/templates/psdb/init_c.tt	(revision 4169)
@@ -3,5 +3,6 @@
 #include <stdlib.h>
 
-int main () {
+int main ()
+{
     psDB            *dbh;
 
Index: /trunk/glueforge/templates/psdb/insert_c.tt
===================================================================
--- /trunk/glueforge/templates/psdb/insert_c.tt	(revision 4168)
+++ /trunk/glueforge/templates/psdb/insert_c.tt	(revision 4169)
@@ -5,5 +5,6 @@
 #include <stdlib.h>
 
-int main () {
+int main ()
+{
     psDB            *dbh;
     bool            status;
Index: /trunk/glueforge/templates/psdb/insertobject_c.tt
===================================================================
--- /trunk/glueforge/templates/psdb/insertobject_c.tt	(revision 4168)
+++ /trunk/glueforge/templates/psdb/insertobject_c.tt	(revision 4169)
@@ -5,5 +5,6 @@
 #include <stdlib.h>
 
-int main () {
+int main ()
+{
     psDB            *dbh;
     bool            status;
Index: /trunk/glueforge/templates/psdb/popobject_c.tt
===================================================================
--- /trunk/glueforge/templates/psdb/popobject_c.tt	(revision 4168)
+++ /trunk/glueforge/templates/psdb/popobject_c.tt	(revision 4169)
@@ -5,5 +5,6 @@
 #include <stdlib.h>
 
-int main () {
+int main ()
+{
     psDB            *dbh;
     [% indented(object_name, "*object") %];
Index: /trunk/glueforge/templates/psdb/tests_makefile_am.tt
===================================================================
--- /trunk/glueforge/templates/psdb/tests_makefile_am.tt	(revision 4168)
+++ /trunk/glueforge/templates/psdb/tests_makefile_am.tt	(revision 4169)
@@ -1,3 +1,2 @@
-
 # copied from bison-1.875d
 
@@ -24,9 +23,4 @@
 ## Test suite.  ##
 ## ------------ ##
-
-#TESTSUITE_AT = \
-#	init.at \
-#	cleanup.at \
-#	createtable.at
 
 TESTSUITE = $(srcdir)/testsuite
Index: /trunk/glueforge/templates/psdb/testsuite_at.tt
===================================================================
--- /trunk/glueforge/templates/psdb/testsuite_at.tt	(revision 4168)
+++ /trunk/glueforge/templates/psdb/testsuite_at.tt	(revision 4169)
@@ -3,21 +3,21 @@
 AT_INIT
 
+###
 [% INCLUDE alloc_at.tt %]
-
-#m4_include([init.at])
+###
 [% INCLUDE init_at.tt %]
-
+###
 [% INCLUDE cleanup_at.tt %]
-
-#m4_include([createtable.at])
+###
 [% INCLUDE createtable_at.tt %]
-
+###
 [% INCLUDE droptable_at.tt %]
-
+###
 [% INCLUDE insert_at.tt %]
-
+###
 [% INCLUDE pop_at.tt %]
-
+###
 [% INCLUDE insertobject_at.tt %]
-
+###
 [% INCLUDE popobject_at.tt %]
+###
