libtiff: Make find0span() and find1span() non-inline to make MSVC 6.0 happy.

From ec571b7ec551badeb6c024864cb2a3ab0e8805f4 Mon Sep 17 00:00:00 2001
From: Andrey Kiselev <[EMAIL REDACTED]>
Date: Wed, 30 Jan 2008 10:53:18 +0000
Subject: [PATCH] Make find0span() and find1span() non-inline to make MSVC 6.0
 happy.

---
 libtiff/tif_fax3.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/libtiff/tif_fax3.c b/libtiff/tif_fax3.c
index 40ac4835..1d62e40b 100644
--- a/libtiff/tif_fax3.c
+++ b/libtiff/tif_fax3.c
@@ -1,4 +1,4 @@
-/* $Id: tif_fax3.c,v 1.43.2.3 2007-11-26 15:27:29 fwarmerdam Exp $ */
+/* $Id: tif_fax3.c,v 1.43.2.4 2008-01-30 10:53:18 dron Exp $ */
 
 /*
  * Copyright (c) 1990-1997 Sam Leffler
@@ -776,7 +776,7 @@ static	int32 find1span(unsigned char*, int32, int32);
  * table.  The ``base'' of the bit string is supplied
  * along with the start+end bit indices.
  */
-static inline int32
+static int32
 find0span(unsigned char* bp, int32 bs, int32 be)
 {
 	int32 bits = be - bs;
@@ -835,7 +835,7 @@ find0span(unsigned char* bp, int32 bs, int32 be)
 	return (span);
 }
 
-static inline int32
+static int32
 find1span(unsigned char* bp, int32 bs, int32 be)
 {
 	int32 bits = be - bs;