Use fseeko module from gnulib instead of our home-grown solution.
[pspp-builds.git] / src / language / stats / flip.c
index 2bcd1e4b873212d33f7201c322983afdf6646a90..3fe43eb90858993a54b0f23bb6dc2ea07265c28f 100644 (file)
@@ -423,14 +423,6 @@ flip_file (struct flip_pgm *flip)
          for (j = 0; j < read_cases; j++)
            output_buf[j] = input_buf[i + j * flip->var_cnt];
 
-#ifndef HAVE_FSEEKO
-#define fseeko fseek
-#endif
-
-#ifndef HAVE_OFF_T
-#define off_t long int
-#endif
-
          if (fseeko (output_file,
                       sizeof *input_buf * (case_idx
                                            + (off_t) i * flip->case_cnt),