Index: trunk/psLib/src/collections/psScalar.h
===================================================================
--- trunk/psLib/src/collections/psScalar.h	(revision 1406)
+++ trunk/psLib/src/collections/psScalar.h	(revision 1407)
@@ -1,2 +1,3 @@
+
 /** @file  psScalar.h
  *
@@ -10,6 +11,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-08-06 22:34:05 $
+ *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-08-07 00:06:06 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -17,7 +18,7 @@
 
 #ifndef PS_SCALAR_H
-#define PS_SCALAR_H
+#    define PS_SCALAR_H
 
-#include "psType.h"
+#    include "psType.h"
 
 /// @addtogroup Scalar
@@ -31,25 +32,27 @@
 typedef struct
 {
-    psType type;                       ///< Type of data.
+    psType type;                // /< Type of data.
 
     union {
-        psU8    U8;                    ///< Unsigned 8-bit integer data.
-        psU16   U16;                   ///< Unsigned 16-bit integer data.
-        psU32   U32;                   ///< Unsigned 32-bit integer data.
-        psU64   U64;                   ///< Unsigned 64-bit integer data.
-        psS8    S8;                    ///< Signed 8-bit integer data.
-        psS16   S16;                   ///< Signed 16-bit integer data.
-        psS32   S32;                   ///< Signed 32-bit integer data.
-        psS64   S64;                   ///< Signed 64-bit integer data.
-        psF32   F32;                   ///< Single-precision float data.
-        psF64   F64;                   ///< Double-precision float data.
-        psC32   C32;                   ///< Single-precision complex data.
-        psC64   C64;                   ///< Double-precision complex data.
-    } data;                            ///< Union for data types.
+        psU8 U8;                // /< Unsigned 8-bit integer data.
+        psU16 U16;              // /< Unsigned 16-bit integer data.
+        psU32 U32;              // /< Unsigned 32-bit integer data.
+        psU64 U64;              // /< Unsigned 64-bit integer data.
+        psS8 S8;                // /< Signed 8-bit integer data.
+        psS16 S16;              // /< Signed 16-bit integer data.
+        psS32 S32;              // /< Signed 32-bit integer data.
+        psS64 S64;              // /< Signed 64-bit integer data.
+        psF32 F32;              // /< Single-precision float data.
+        psF64 F64;              // /< Double-precision float data.
+        psC32 C32;              // /< Single-precision complex data.
+        psC64 C64;              // /< Double-precision complex data.
+    } data;                     // /< Union for data types.
 }
 psScalar;
 
 /*****************************************************************************/
+
 /* FUNCTION PROTOTYPES                                                       */
+
 /*****************************************************************************/
 
@@ -62,9 +65,7 @@
  *
  */
-psScalar *psScalarAlloc(
-    psC64 value,            ///< Data to be put into psScalar.
-    psElemType dataType     ///< Type of data to be held by psScalar.
-);
-
+psScalar *psScalarAlloc(psC64 value,    // /< Data to be put into psScalar.
+                        psElemType dataType     // /< Type of data to be held by psScalar.
+                       );
 
 /** Deallocate a scalar.
@@ -75,7 +76,6 @@
  *
  */
-void psScalarFree(
-    psScalar *restrict scalar  ///< Scalar to free.
-);
+void psScalarFree(psScalar * restrict scalar    // /< Scalar to free.
+                 );
 
 /// @}
