summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Kiselev <dron@ak4719.spb.edu>2005-07-11 14:45:18 +0000
committerAndrey Kiselev <dron@ak4719.spb.edu>2005-07-11 14:45:18 +0000
commitb0ea7f14a3e3be431a4d543ed815aec57c253645 (patch)
treef3bbccf20e4eafd49b1fc938de11128396749ffb
parent673f12364f019df89d8898e46a4dbfc93871911c (diff)
downloadlibtiff-git-b0ea7f14a3e3be431a4d543ed815aec57c253645.tar.gz
Use #ifdef instead of #if in header conditionals.
-rw-r--r--libtiff/tiffiop.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/libtiff/tiffiop.h b/libtiff/tiffiop.h
index ab2b28b2..49d12d9a 100644
--- a/libtiff/tiffiop.h
+++ b/libtiff/tiffiop.h
@@ -1,4 +1,4 @@
-/* $Id: tiffiop.h,v 1.37 2005-07-07 16:00:50 dron Exp $ */
+/* $Id: tiffiop.h,v 1.38 2005-07-11 14:45:18 dron Exp $ */
/*
* Copyright (c) 1988-1997 Sam Leffler
@@ -32,25 +32,25 @@
#include "tif_config.h"
-#if HAVE_FCNTL_H
+#ifdef HAVE_FCNTL_H
# include <fcntl.h>
#endif
-#if HAVE_SYS_TYPES_H
+#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
-#if HAVE_STRING_H
+#ifdef HAVE_STRING_H
# include <string.h>
#endif
-#if HAVE_ASSERT_H
+#ifdef HAVE_ASSERT_H
# include <assert.h>
#else
# define assert(x)
#endif
-#if HAVE_SEARCH_H
+#ifdef HAVE_SEARCH_H
# include <search.h>
#else
extern void *lfind(const void *, const void *, size_t *, size_t,