Index: trunk/psModules/src/objects/pmSourceIO_CMP.c
===================================================================
--- trunk/psModules/src/objects/pmSourceIO_CMP.c	(revision 8813)
+++ trunk/psModules/src/objects/pmSourceIO_CMP.c	(revision 8815)
@@ -3,10 +3,14 @@
  *  @author EAM, IfA
  *
- *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-09-14 23:01:28 $
+ *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2006-09-15 09:49:01 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
  *
  */
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 
 #include <stdio.h>
@@ -96,10 +100,6 @@
         return false;
     }
-    #if defined _LARGEFILE_SOURCE && defined HAVE_SEEKO
-    fseeko (f, 0, SEEK_END);
-    #else
-
-    fseek(f, 0, SEEK_END);
-    #endif
+
+    fseeko(f, 0, SEEK_END);
 
     psLine *line = psLineAlloc (67);  // 66 is imclean-defined line length
@@ -182,10 +182,6 @@
         return NULL;
     }
-    #if defined _LARGEFILE_SOURCE && defined HAVE_SEEKO
-    fseeko (f, nBytes, SEEK_SET);
-    #else
-
-    fseek(f, nBytes, SEEK_SET);
-    #endif
+
+    fseeko(f, nBytes, SEEK_SET);
 
     // prepare array to store data
