8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-24 07:23:03 +01:00

Some #if should be #ifdef instead.

This commit is contained in:
robocop 2009-05-17 11:25:50 +00:00
parent db9d512817
commit 4bae43779f
5 changed files with 5 additions and 5 deletions

View File

@ -1192,7 +1192,7 @@ static int raw_devices_unlink_database(const PathName& file_name)
//if (desc != -1) perhaps it's better to check this???
close(desc);
#if DEV_BUILD
#ifdef DEV_BUILD
gds__log ("raw_devices_unlink_database: %s -> %s\n",
file_name.c_str(), i < IO_RETRY ? "true" : "false");
#endif

View File

@ -61,7 +61,7 @@
#include <unistd.h>
#endif
#if HAVE_SYS_WAIT_H
#ifdef HAVE_SYS_WAIT_H
# include <sys/wait.h>
#endif

View File

@ -52,7 +52,7 @@
#include <unistd.h>
#endif
#if HAVE_SYS_WAIT_H
#ifdef HAVE_SYS_WAIT_H
# include <sys/wait.h>
#endif

View File

@ -44,7 +44,7 @@
#include <wait.h> /* for waitpid() */
#endif
#if HAVE_SYS_WAIT_H
#ifdef HAVE_SYS_WAIT_H
# include <sys/wait.h>
#endif
#ifndef WEXITSTATUS

View File

@ -31,7 +31,7 @@
#include <unistd.h>
#endif
#include <sys/types.h>
#if HAVE_SYS_WAIT_H
#ifdef HAVE_SYS_WAIT_H
# include <sys/wait.h>
#endif