From 1abc31ad6865a8c9ddd5eda3a20ccf423ef487dd Mon Sep 17 00:00:00 2001 From: Andrey Kiselev Date: Thu, 2 Sep 2004 14:36:33 +0000 Subject: [PATCH] *** empty log message *** --- libtiff/mkg3states.c | 4 ++-- tools/fax2ps.c | 8 +++++--- tools/fax2tiff.c | 14 +++++++------- tools/gif2tiff.c | 6 ++++-- 4 files changed, 18 insertions(+), 14 deletions(-) diff --git a/libtiff/mkg3states.c b/libtiff/mkg3states.c index 16bd29dc..64d5cca2 100644 --- a/libtiff/mkg3states.c +++ b/libtiff/mkg3states.c @@ -1,4 +1,4 @@ -/* "$Id: mkg3states.c,v 1.7 2004-09-02 14:27:49 dron Exp $ */ +/* "$Id: mkg3states.c,v 1.8 2004-09-02 14:38:34 dron Exp $ */ /* * Copyright (c) 1991-1997 Sam Leffler @@ -35,7 +35,7 @@ #include #include -#if HAVE_UNISTD_H +#ifdef HAVE_UNISTD_H # include #endif diff --git a/tools/fax2ps.c b/tools/fax2ps.c index bdb50fbd..d4943362 100644 --- a/tools/fax2ps.c +++ b/tools/fax2ps.c @@ -1,4 +1,4 @@ -/* $Id: fax2ps.c,v 1.15 2004-08-25 18:34:55 dron Exp $" */ +/* $Id: fax2ps.c,v 1.16 2004-09-02 14:37:29 dron Exp $" */ /* * Copyright (c) 1991-1997 Sam Leffler @@ -31,11 +31,11 @@ #include #include -#if HAVE_UNISTD_H +#ifdef HAVE_UNISTD_H # include #endif -#if HAVE_IO_H +#ifdef HAVE_IO_H # include #endif @@ -431,3 +431,5 @@ usage(int code) fprintf(stderr, "%s\n", stuff[i]); exit(code); } + +/* vim: set ts=8 sts=8 sw=8 noet: */ \ No newline at end of file diff --git a/tools/fax2tiff.c b/tools/fax2tiff.c index 940bc323..02694216 100644 --- a/tools/fax2tiff.c +++ b/tools/fax2tiff.c @@ -1,4 +1,4 @@ -/* $Id: fax2tiff.c,v 1.13 2004-09-02 14:31:26 dron Exp $ */ +/* $Id: fax2tiff.c,v 1.14 2004-09-02 14:38:10 dron Exp $ */ /* * Copyright (c) 1990-1997 Sam Leffler @@ -32,29 +32,29 @@ #include #include /* should have atof & getopt */ -#if HAVE_UNISTD_H +#ifdef HAVE_UNISTD_H # include #endif -#if HAVE_FCNTL_H +#ifdef HAVE_FCNTL_H # include #endif -#if HAVE_IO_H +#ifdef HAVE_IO_H # include #endif #include "tiffiop.h" #ifndef BINMODE -#define BINMODE +# define BINMODE #endif #ifndef EXIT_SUCCESS -#define EXIT_SUCCESS 0 +# define EXIT_SUCCESS 0 #endif #ifndef EXIT_FAILURE -#define EXIT_FAILURE 1 +# define EXIT_FAILURE 1 #endif TIFF *faxTIFF; diff --git a/tools/gif2tiff.c b/tools/gif2tiff.c index 53f6136e..2b02ce7c 100644 --- a/tools/gif2tiff.c +++ b/tools/gif2tiff.c @@ -1,4 +1,4 @@ -/* $Id: gif2tiff.c,v 1.7 2004-09-02 14:33:55 dron Exp $ */ +/* $Id: gif2tiff.c,v 1.8 2004-09-02 14:36:33 dron Exp $ */ /* * Copyright (c) 1990-1997 Sam Leffler @@ -33,12 +33,14 @@ * if input is 640 350 pixel aspect is probably 1.37 * */ +#include "tif_config.h" + #include #include #include #include -#if HAVE_UNISTD_H +#ifdef HAVE_UNISTD_H # include #endif