From b0ea7f14a3e3be431a4d543ed815aec57c253645 Mon Sep 17 00:00:00 2001 From: Andrey Kiselev Date: Mon, 11 Jul 2005 14:45:18 +0000 Subject: [PATCH] Use #ifdef instead of #if in header conditionals. --- libtiff/tiffiop.h | 12 ++++++------ 1 file 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 #endif -#if HAVE_SYS_TYPES_H +#ifdef HAVE_SYS_TYPES_H # include #endif -#if HAVE_STRING_H +#ifdef HAVE_STRING_H # include #endif -#if HAVE_ASSERT_H +#ifdef HAVE_ASSERT_H # include #else # define assert(x) #endif -#if HAVE_SEARCH_H +#ifdef HAVE_SEARCH_H # include #else extern void *lfind(const void *, const void *, size_t *, size_t,