Index: trunk/psLib/test/tst_template.c
===================================================================
--- trunk/psLib/test/tst_template.c	(revision 1364)
+++ trunk/psLib/test/tst_template.c	(revision 2204)
@@ -6,6 +6,6 @@
 *  @author Robert DeSonia, MHPCC
 *
-*  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2004-08-02 18:30:10 $
+*  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2004-10-27 00:57:31 $
 *
 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -15,7 +15,7 @@
 #include "pslib.h"
 
-static int test1( void );
-static int test2( void );
-static int test3( void );
+static psS32 test1( void );
+static psS32 test2( void );
+static psS32 test3( void );
 
 // test descrription consists of:
@@ -45,10 +45,10 @@
                                   test3, 1114, "psFunctionFunk", 0, false
                               },
-                              
+
                               // testpoint #1112 handled by same test function as #1111
                               {
                                   test1, 1112, "psFunctionBang", 0, true
                               },
-                              
+
                               // A null terminates the testDescription list
                               {
@@ -56,36 +56,36 @@
                               }
                           };
-                          
-int main( int argc, char* argv[] )
+
+psS32 main( psS32 argc, char* argv[] )
 {
     psLogSetLevel( PS_LOG_INFO );
-    
+
     return ( ! runTestSuite( stderr, "psImage", tests, argc, argv ) );
 }
 
-int test1( void )
+psS32 test1( void )
 {
     // no need to check for memory leaks, as the runTestSuite does that for you.
-    
+
     // here is where one implements the tests for generally a single testpoint.
-    
+
     return 0;  // the value that indicates success is part of the testDescription
 }
 
-int test2( void )
+psS32 test2( void )
 {
     // no need to check for memory leaks, as the runTestSuite does that for you.
-    
+
     // here is where one implements the tests for generally a single testpoint.
-    
+
     return 0;  // the value that indicates success is part of the testDescription
 }
 
-int test3( void )
+psS32 test3( void )
 {
     // no need to check for memory leaks, as the runTestSuite does that for you.
-    
+
     // here is where one implements the tests for generally a single testpoint.
-    
+
     return 0;  // the value that indicates success is part of the testDescription
 }
