Index: /trunk/psLib/src/astro/psCoord.c
===================================================================
--- /trunk/psLib/src/astro/psCoord.c	(revision 6382)
+++ /trunk/psLib/src/astro/psCoord.c	(revision 6383)
@@ -10,6 +10,6 @@
 *  @author GLG, MHPCC
 *
-*  @version $Revision: 1.107 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2006-02-08 21:30:34 $
+*  @version $Revision: 1.108 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2006-02-08 21:34:53 $
 *
 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -253,5 +253,5 @@
 
     if (out == NULL) {
-        out = (psPlane* ) psAlloc(sizeof(psPlane));
+        out = psPlaneAlloc();
     }
 
@@ -294,9 +294,10 @@
 coordinates: term3 and term4 (magnitude and color).
  *****************************************************************************/
-psPlane* psPlaneDistortApply(psPlane* out,
-                             const psPlaneDistort* distort,
-                             const psPlane* coords,
-                             float mag,
-                             float color)
+psPlane* psPlaneDistortApply(
+    psPlane* out,
+    const psPlaneDistort* distort,
+    const psPlane* coords,
+    float mag,
+    float color)
 {
     PS_ASSERT_PTR_NON_NULL(distort, NULL);
@@ -306,5 +307,5 @@
 
     if (out == NULL) {
-        out = (psPlane* ) psAlloc(sizeof(psPlane));
+        out = psPlaneAlloc();
     }
     out->x = psPolynomial4DEval(
@@ -552,6 +553,7 @@
 }
 
-psSphere* psDeproject(const psPlane* coord,
-                      const psProjection* projection)
+psSphere* psDeproject(
+    const psPlane* coord,
+    const psProjection* projection)
 {
     return(p_psDeproject(NULL, coord, projection));
@@ -567,6 +569,7 @@
  *****************************************************************************/
 
-static psPolynomial2D *multiplyDPoly2D(psPolynomial2D *trans1,
-                                       psPolynomial2D *trans2)
+static psPolynomial2D *multiplyDPoly2D(
+    psPolynomial2D *trans1,
+    psPolynomial2D *trans2)
 {
     psTrace(__func__, 4, "---- %s() begin ----\n", __func__);
@@ -791,9 +794,10 @@
 XXX: This code has problems with data that corresponds to a non-linear fit.
  *****************************************************************************/
-bool psPlaneTransformFit(psPlaneTransform *trans,
-                         const psArray *source,
-                         const psArray *dest,
-                         int nRejIter,
-                         float sigmaClip)
+bool psPlaneTransformFit(
+    psPlaneTransform *trans,
+    const psArray *source,
+    const psArray *dest,
+    int nRejIter,
+    float sigmaClip)
 {
     PS_ASSERT_PTR_NON_NULL(trans, NULL);
@@ -1087,7 +1091,8 @@
 }
 
-psPixels *psPixelsTransform(psPixels *out,
-                            const psPixels *input,
-                            const psPlaneTransform *inToOut)
+psPixels *psPixelsTransform(
+    psPixels *out,
+    const psPixels *input,
+    const psPlaneTransform *inToOut)
 {
     PS_ASSERT_PTR_NON_NULL(input, NULL);
