1993.12.09 22:47 "TIFF 3.30beta prototype problems/fixes", by epeisach@MIT.EDU

These are changes requires to match the prototypes with an Ansi compiler. I will be testing the Alpha support and will send mail when done. (i.e. Makefile.alpha)

Ezra
epeisach@mit.edu

*** 1.1 1993/12/09 22:42:39
--- tif_unix.c  1993/12/09 22:43:26
***************
*** 46,52 ****
  }

  static toff_t
! _tiffSeekProc(thandle_t fd, off_t off, int whence)
  {
        return ((toff_t) lseek((int) fd, (off_t) off, whence));
  }
--- 46,52 ----
  }

  static toff_t
! _tiffSeekProc(thandle_t fd, toff_t off, int whence)
  {
        return ((toff_t) lseek((int) fd, (off_t) off, whence));
  }
*** 1.1 1993/12/09 22:43:49
--- tif_write.c 1993/12/09 22:44:29
***************
*** 561,567 ****
   * appended to the end of the file.
   */
  void
! TIFFSetWriteOffset(TIFF* tif, off_t off)
  {
        tif->tif_curoff = off;
  }
--- 561,567 ----
   * appended to the end of the file.
   */
  void
! TIFFSetWriteOffset(TIFF* tif, toff_t off)
  {
        tif->tif_curoff = off;
  }