* libtiff/tif_jpeg.c: There seems to be no need to include stdio.h

in this file so its inclusion is removed.  Including stdio.h
sometimes incurs an INT32 typedef conflict between MinGW's
basetsd.h and libjpeg's jmorecfg.h.
This commit is contained in:
Bob Friesenhahn 2004-10-15 14:49:43 +00:00
parent 542625aabe
commit a8829183f1
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,10 @@
2004-10-15 Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
* libtiff/tif_jpeg.c: There seems to be no need to include stdio.h
in this file so its inclusion is removed. Including stdio.h
sometimes incurs an INT32 typedef conflict between MinGW's
basetsd.h and libjpeg's jmorecfg.h.
2004-10-15 Andrey Kiselev <dron@remotesensing.org>
* man/bmp2tiff.1: Added manual page for bmp2tiff utility.

View File

@ -1,4 +1,4 @@
/* $Id: tif_jpeg.c,v 1.24 2004-10-12 18:50:48 dron Exp $ */
/* $Id: tif_jpeg.c,v 1.25 2004-10-15 14:49:44 bfriesen Exp $ */
/*
* Copyright (c) 1994-1997 Sam Leffler
@ -38,7 +38,6 @@
*
* Contributed by Tom Lane <tgl@sss.pgh.pa.us>.
*/
#include <stdio.h>
#include <setjmp.h>
int TIFFFillStrip(TIFF*, tstrip_t);