IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 8, 2007, 3:40:08 PM (19 years ago)
Author:
jhoblitt
Message:

gcc attribute cleanup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/astro/psCoord.h

    r13839 r14452  
    88 *  @author GLG, MHPCC
    99 *
    10  *  @version $Revision: 1.60 $ $Name: not supported by cvs2svn $
    11  *  @date $Date: 2007-06-15 01:03:22 $
     10 *  @version $Revision: 1.61 $ $Name: not supported by cvs2svn $
     11 *  @date $Date: 2007-08-09 01:40:07 $
    1212 *
    1313 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    157157 *  @return psPlane*     resulting plane structure.
    158158 */
    159 psPlane* psPlaneAlloc(void);
     159psPlane* psPlaneAlloc(void) PS_ATTR_MALLOC;
    160160
    161161/** Allocates a psSphere
     
    163163 *  @return psSphere*     resulting sphere structure.
    164164 */
    165 psSphere* psSphereAlloc(void);
     165psSphere* psSphereAlloc(void) PS_ATTR_MALLOC;
    166166
    167167/** Allocates a psCube
     
    169169 *  @return psCube*     resulting cubic structure.
    170170 */
    171 psCube* psCubeAlloc(void);
     171psCube* psCubeAlloc(void) PS_ATTR_MALLOC;
    172172
    173173/** Allocates a psPlaneTransform transform.
     
    179179    int order1,                        ///< The order of the x term in the transform.
    180180    int order2                         ///< The order of the y term in the transform.
    181 );
     181) PS_ATTR_MALLOC;
    182182
    183183/** Applies the psPlaneTransform transform to a specified coordinate
     
    201201    int order3,                        ///< The order of the y term in the transform.
    202202    int order4                         ///< The order of the z term in the transform.
    203 );
     203) PS_ATTR_MALLOC;
    204204
    205205
     
    226226    double Ys,                         ///< Scale in y-dimension
    227227    psProjectionType type
    228 );
     228) PS_ATTR_MALLOC;
    229229
    230230/** Checks the type of a particular pointer.
Note: See TracChangeset for help on using the changeset viewer.