Added ssize_t typedef on Windows since it doesn't exist. This makes
it compile again on Windows.
This commit is contained in:
parent
e47164d103
commit
3e75fc789f
@ -1,4 +1,4 @@
|
||||
/* $Id: tiffdump.c,v 1.15 2007-07-04 11:31:36 dron Exp $ */
|
||||
/* $Id: tiffdump.c,v 1.16 2008-01-01 15:45:14 fwarmerdam Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1988-1997 Sam Leffler
|
||||
@ -52,6 +52,10 @@
|
||||
# define O_BINARY 0
|
||||
#endif
|
||||
|
||||
#if defined(_WIN32)
|
||||
typedef TIFF_SSIZE_T ssize_t;
|
||||
#endif
|
||||
|
||||
static union
|
||||
{
|
||||
TIFFHeaderClassic classic;
|
||||
|
Loading…
Reference in New Issue
Block a user