IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Sep 14, 2006, 11:49:01 PM (20 years ago)
Author:
jhoblitt
Message:

consistently include config.h
remove fseeko #defs from objects/pmSourceIO_CMP.c

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/objects/pmSourceIO_CMP.c

    r8813 r8815  
    33 *  @author EAM, IfA
    44 *
    5  *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
    6  *  @date $Date: 2006-09-14 23:01:28 $
     5 *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
     6 *  @date $Date: 2006-09-15 09:49:01 $
    77 *
    88 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
    99 *
    1010 */
     11
     12#ifdef HAVE_CONFIG_H
     13#include <config.h>
     14#endif
    1115
    1216#include <stdio.h>
     
    96100        return false;
    97101    }
    98     #if defined _LARGEFILE_SOURCE && defined HAVE_SEEKO
    99     fseeko (f, 0, SEEK_END);
    100     #else
    101 
    102     fseek(f, 0, SEEK_END);
    103     #endif
     102
     103    fseeko(f, 0, SEEK_END);
    104104
    105105    psLine *line = psLineAlloc (67);  // 66 is imclean-defined line length
     
    182182        return NULL;
    183183    }
    184     #if defined _LARGEFILE_SOURCE && defined HAVE_SEEKO
    185     fseeko (f, nBytes, SEEK_SET);
    186     #else
    187 
    188     fseek(f, nBytes, SEEK_SET);
    189     #endif
     184
     185    fseeko(f, nBytes, SEEK_SET);
    190186
    191187    // prepare array to store data
Note: See TracChangeset for help on using the changeset viewer.