From c60b43afa76cbc6ed19a4794eab0fe15f9b54300 Mon Sep 17 00:00:00 2001 From: Simon Josefsson Date: Mon, 4 Oct 2004 20:30:46 +0000 Subject: [PATCH] error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of '#ifdef USE_UNLOCKED_IO'. --- lib/ChangeLog | 5 +++++ lib/error.c | 2 +- lib/md5.c | 2 +- lib/regex.c | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/lib/ChangeLog b/lib/ChangeLog index 5e92ad5c24..90e7f08698 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,8 @@ +2004-10-04 Simon Josefsson + + * error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of + '#ifdef USE_UNLOCKED_IO'. + 2004-10-04 Paul Eggert * argmatch.c, closeout.c, error.c, exclude.c, getdate.y, diff --git a/lib/error.c b/lib/error.c index 94e32fd822..9bb3e558cb 100644 --- a/lib/error.c +++ b/lib/error.c @@ -40,7 +40,7 @@ # define mbsrtowcs __mbsrtowcs #endif -#ifdef USE_UNLOCKED_IO +#if USE_UNLOCKED_IO # include "unlocked-io.h" #endif diff --git a/lib/md5.c b/lib/md5.c index 39d2bb4e5b..999e25ef3b 100644 --- a/lib/md5.c +++ b/lib/md5.c @@ -29,7 +29,7 @@ #include #include -#ifdef USE_UNLOCKED_IO +#if USE_UNLOCKED_IO # include "unlocked-io.h" #endif diff --git a/lib/regex.c b/lib/regex.c index 45db40e9fa..0f7fef8835 100644 --- a/lib/regex.c +++ b/lib/regex.c @@ -584,7 +584,7 @@ typedef enum # endif #endif -#ifdef USE_UNLOCKED_IO +#if USE_UNLOCKED_IO # include "unlocked-io.h" #endif -- 2.30.2