*** empty log message ***

This commit is contained in:
Andrey Kiselev 2004-09-02 14:36:33 +00:00
parent dafeac1024
commit 1abc31ad68
4 changed files with 18 additions and 14 deletions

View File

@ -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 <stdlib.h>
#include <string.h>
#if HAVE_UNISTD_H
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif

View File

@ -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 <math.h>
#include <time.h>
#if HAVE_UNISTD_H
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#if HAVE_IO_H
#ifdef HAVE_IO_H
# include <io.h>
#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: */

View File

@ -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 <stdio.h>
#include <stdlib.h> /* should have atof & getopt */
#if HAVE_UNISTD_H
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#if HAVE_FCNTL_H
#ifdef HAVE_FCNTL_H
# include <fcntl.h>
#endif
#if HAVE_IO_H
#ifdef HAVE_IO_H
# include <io.h>
#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;

View File

@ -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 <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#if HAVE_UNISTD_H
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif