Avoid warnings.

This commit is contained in:
Andrey Kiselev 2004-09-03 13:57:34 +00:00
parent 3244d61471
commit 0883c324fa

View File

@ -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 * Copyright (c) 1991-1997 Sam Leffler
@ -24,10 +24,16 @@
* OF THIS SOFTWARE. * OF THIS SOFTWARE.
*/ */
#include "tif_config.h"
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
#include <stdlib.h> #include <stdlib.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#include "tiffio.h" #include "tiffio.h"
#define streq(a,b) (strcmp(a,b) == 0) #define streq(a,b) (strcmp(a,b) == 0)
@ -476,3 +482,5 @@ usage(int code)
fprintf(stderr, "%s\n", stuff[i]); fprintf(stderr, "%s\n", stuff[i]);
exit(code); exit(code);
} }
/* vim: set ts=8 sts=8 sw=8 noet: */