From 0883c324fa66a6013977f32054f727d0d35e4417 Mon Sep 17 00:00:00 2001 From: Andrey Kiselev Date: Fri, 3 Sep 2004 13:57:34 +0000 Subject: [PATCH] Avoid warnings. --- tools/tiff2rgba.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/tools/tiff2rgba.c b/tools/tiff2rgba.c index 6ef8a90e..408fa52f 100644 --- a/tools/tiff2rgba.c +++ b/tools/tiff2rgba.c @@ -1,4 +1,4 @@ -/* $Id: tiff2rgba.c,v 1.9 2004-07-24 19:05:57 dron Exp $ */ +/* $Id: tiff2rgba.c,v 1.10 2004-09-03 13:57:34 dron Exp $ */ /* * Copyright (c) 1991-1997 Sam Leffler @@ -24,10 +24,16 @@ * OF THIS SOFTWARE. */ +#include "tif_config.h" + #include #include #include +#ifdef HAVE_UNISTD_H +# include +#endif + #include "tiffio.h" #define streq(a,b) (strcmp(a,b) == 0) @@ -476,3 +482,5 @@ usage(int code) fprintf(stderr, "%s\n", stuff[i]); exit(code); } + +/* vim: set ts=8 sts=8 sw=8 noet: */