TIFFrint moved to the tif_color.c

This commit is contained in:
Andrey Kiselev 2003-12-24 22:07:23 +00:00
parent 63c0c49fa5
commit 62b5015372

View File

@ -1,4 +1,4 @@
/* $Header: /cvs/maptools/cvsroot/libtiff/libtiff/tiffiop.h,v 1.8 2003-11-09 10:19:06 dron Exp $ */ /* $Header: /cvs/maptools/cvsroot/libtiff/libtiff/tiffiop.h,v 1.9 2003-12-24 22:07:23 dron Exp $ */
/* /*
* Copyright (c) 1988-1997 Sam Leffler * Copyright (c) 1988-1997 Sam Leffler
@ -203,7 +203,6 @@ struct tiff {
#define TIFFmax(A,B) ((A)>(B)?(A):(B)) #define TIFFmax(A,B) ((A)>(B)?(A):(B))
#define TIFFmin(A,B) ((A)<(B)?(A):(B)) #define TIFFmin(A,B) ((A)<(B)?(A):(B))
#define TIFFrint( R ) ((int)((R)>0?((R)+0.5):((R)-0.5)))
#if defined(__cplusplus) #if defined(__cplusplus)
extern "C" { extern "C" {